a linear-operator toolbox for matlab · a linear-operator toolbox for matlab michael p. friedlander...

Post on 10-Feb-2020

47 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

A Linear-Operator Toolbox for Matlab

Michael P. FriedlanderUBC Computer Science

Thursday, December 9, 2010

Linear Models

Ax ! b

Signal and image processing

• b is observed signal

• x is “true” signal or its representation in some basis/dictionary

Linear operators

• may not have a practical matrix representation

• often fast algorithms for application of A and A! (eg, FFT)

Computation

Ax A!y A(:, idx)x(idx) min 12"Ax # b"22 + !(x)

2 / 11

Thursday, December 9, 2010

Linear Models

Ax ! b

Signal and image processing

• b is observed signal

• x is “true” signal or its representation in some basis/dictionary

Linear operators

• may not have a practical matrix representation

• often fast algorithms for application of A and A! (eg, FFT)

Computation

Ax A!y A(:, idx)x(idx) min 12"Ax # b"22 + !(x)

2 / 11

Thursday, December 9, 2010

Linear Models

Ax ! b

Signal and image processing

• b is observed signal

• x is “true” signal or its representation in some basis/dictionary

Linear operators

• may not have a practical matrix representation

• often fast algorithms for application of A and A! (eg, FFT)

Computation

Ax A!y A(:, idx)x(idx) min 12"Ax # b"22 + !(x)

2 / 11

Thursday, December 9, 2010

Linear Models

Ax ! b

Signal and image processing

• b is observed signal

• x is “true” signal or its representation in some basis/dictionary

Linear operators

• may not have a practical matrix representation

• often fast algorithms for application of A and A! (eg, FFT)

Computation

Ax A!y A(:, idx)x(idx) min 12"Ax # b"22 + !(x)

2 / 11

Thursday, December 9, 2010

Linear Models

Ax ! b

Signal and image processing

• b is observed signal

• x is “true” signal or its representation in some basis/dictionary

Linear operators

• may not have a practical matrix representation

• often fast algorithms for application of A and A! (eg, FFT)

Computation

Ax

A!y A(:, idx)x(idx) min 12"Ax # b"22 + !(x)

2 / 11

Thursday, December 9, 2010

Linear Models

Ax ! b

Signal and image processing

• b is observed signal

• x is “true” signal or its representation in some basis/dictionary

Linear operators

• may not have a practical matrix representation

• often fast algorithms for application of A and A! (eg, FFT)

Computation

Ax A!y

A(:, idx)x(idx) min 12"Ax # b"22 + !(x)

2 / 11

Thursday, December 9, 2010

Linear Models

Ax ! b

Signal and image processing

• b is observed signal

• x is “true” signal or its representation in some basis/dictionary

Linear operators

• may not have a practical matrix representation

• often fast algorithms for application of A and A! (eg, FFT)

Computation

Ax A!y A(:, idx)x(idx)

min 12"Ax # b"22 + !(x)

2 / 11

Thursday, December 9, 2010

Linear Models

Ax ! b

Signal and image processing

• b is observed signal

• x is “true” signal or its representation in some basis/dictionary

Linear operators

• may not have a practical matrix representation

• often fast algorithms for application of A and A! (eg, FFT)

Computation

Ax A!y A(:, idx)x(idx) min 12"Ax # b"22 + !(x)

2 / 11

Thursday, December 9, 2010

Spot Toolbox

Keeping the “mat” in Matlab

A = F'*diag(F*v)*F;y = A*x;

vs

function y = circulant(x,v)y = ifft(fft(v).*fft(x));

endy = circulant(x,v);

The Toolbox

• free software, GPL

• late-model Matlab required, ! 7.6 (2008a)

(extensive use of classdef and packages)

• extensible

3 / 11

Thursday, December 9, 2010

Spot Toolbox

Keeping the “mat” in Matlab

A = F'*diag(F*v)*F;y = A*x;

vs

function y = circulant(x,v)y = ifft(fft(v).*fft(x));

endy = circulant(x,v);

The Toolbox

• free software, GPL

• late-model Matlab required, ! 7.6 (2008a)

(extensive use of classdef and packages)

• extensible

3 / 11

Thursday, December 9, 2010

Spot Toolbox

Keeping the “mat” in Matlab

A = F'*diag(F*v)*F;y = A*x;

vs

function y = circulant(x,v)y = ifft(fft(v).*fft(x));

endy = circulant(x,v);

The Toolbox

• free software, GPL

• late-model Matlab required, ! 7.6 (2008a)

(extensive use of classdef and packages)

• extensible

3 / 11

Thursday, December 9, 2010

Spot Toolbox

Keeping the “mat” in Matlab

A = F'*diag(F*v)*F;y = A*x;

vs

function y = circulant(x,v)y = ifft(fft(v).*fft(x));

endy = circulant(x,v);

The Toolbox

• free software, GPL

• late-model Matlab required, ! 7.6 (2008a)

(extensive use of classdef and packages)

• extensible

3 / 11

Thursday, December 9, 2010

Spot Toolbox

Keeping the “mat” in Matlab

A = F'*diag(F*v)*F;y = A*x;

vs

function y = circulant(x,v)y = ifft(fft(v).*fft(x));

endy = circulant(x,v);

The Toolbox

• free software, GPL

• late-model Matlab required, ! 7.6 (2008a)

(extensive use of classdef and packages)

• extensible

3 / 11

Thursday, December 9, 2010

Example 1: Image Deblurring

b = Ax + r

Spatially-invariant blur

A = F !!F A = DT!D A = bttb(!c)

periodic reflexive zero

Fast-operators

Fx !"N fft2(x) Dx ! dct2(x)

Implementing matrix-vector products

y = Ax = F !!Fx #$ y = ifft2(fft2(a1).*fft2(x))

4 / 11

Thursday, December 9, 2010

Example 1: Image Deblurring

b = Ax + r

Spatially-invariant blur

A = F !!F A = DT!D A = bttb(!c)

periodic reflexive zero

Fast-operators

Fx !"N fft2(x) Dx ! dct2(x)

Implementing matrix-vector products

y = Ax = F !!Fx #$ y = ifft2(fft2(a1).*fft2(x))

4 / 11

Thursday, December 9, 2010

Example 1: Image Deblurring

b = Ax + r

Spatially-invariant blur

A = F !!F A = DT!D A = bttb(!c)

periodic reflexive zero

Fast-operators

Fx !"N fft2(x) Dx ! dct2(x)

Implementing matrix-vector products

y = Ax = F !!Fx #$ y = ifft2(fft2(a1).*fft2(x))

4 / 11

Thursday, December 9, 2010

Example 1: Image Deblurring

b = Ax + r

Spatially-invariant blur

A = F !!F A = DT!D A = bttb(!c)

periodic reflexive zero

Fast-operators

Fx !"N fft2(x) Dx ! dct2(x)

Implementing matrix-vector products

y = Ax = F !!Fx #$ y = ifft2(fft2(a1).*fft2(x))

4 / 11

Thursday, December 9, 2010

Blurring Demo

5 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \

^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^

’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’

.’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’

[.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.]

[.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.]

bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Spot Operator Library

Operator type Matlab function

Fast operators opConvolve, opCurvelet, opDCT, opDCT2opDFT, opDFT2, opDirac, opEye, opHaar, opHaar2,opHadamard, opHeaviside, opOnes, opToeplitzopToepGauss, opToepSign, opWavelet

Ensembles opBernoulli, opBinary, opGaussian, opSparseBinary

Selection opExcise, opMask, opRestriction, opSubsref

Meta operators opBlockDiag, opConj, opDiag, opCTranspose, opKronopDictionary, opZeros, opImage, opInverse, opRealopMinus, opOrthogonal, opPInverse, opPower, opFoGopStack, opSubsAsgn, opSum, opTransposeopEmpty, opZeros

Wrapping opClass, opFunction, opMatrix

+ - * / \ ^ ’ .’ [.,.] [.;.] bicg char disp eigs isreal

minres qmr subsasgn bicgstab conj display end imag isscalar pcgrealsubsref blkdiag double full inv kron ndims pinv rrandn symmlq cgsdiag drandn gmres isempty lsqr normest size

6 / 11

Thursday, December 9, 2010

Example 2: Sparse Recovery

= +

Rb = R = Restriction

R

b !

R

Haar DCT x

7 / 11

Thursday, December 9, 2010

Example 2: Sparse Recovery

= +

Rb = R = Restriction

R

b !

R

Haar DCT x

7 / 11

Thursday, December 9, 2010

Example 2: Sparse Recovery

= +

Rb = R = Restriction

R

b !

R

Haar DCT x

7 / 11

Thursday, December 9, 2010

Example 2: Sparse Recovery

= +

Rb = R = Restriction

Rb ! R Haar DCT x

7 / 11

Thursday, December 9, 2010

Sparse Recovery Demo

8 / 11

Thursday, December 9, 2010

Extensibility

classdef opDCT < opSpot% D = opDCT(N) creates a 1!D DCT for length!N signals

methodsfunction op = opDCT(n)%opDCT constructor.

op = op@opSpot('DCT',n,n);endfunction y = multiply(op,x,mode)%multiply apply the DCT operator.

if mode == 1y = dct(x); % ie, y = D*x

elsey = idct(x); % ie, y = D'*x

endend

end % methodsend % classdef

9 / 11

Thursday, December 9, 2010

Development History

May '09

von Neumann Symposium(Snowbird)

July '07

Dec '07

July '08

Sparco v1.0

v1.1

v1.2(ACM TOMS)

Spot v0.1

Spot v1.0

v1.1-v1.2

v1.3

v1.4v1.5

SGPL1 v1.0

v1.6(SISC)

v1.7

Dec '08

Sept '0

9

10 / 11

Thursday, December 9, 2010

Looking Ahead

Large-scale computing (Joint with Felix Herrmann, EOS)

• out-of-core operations borrow ideas from SlimPy

• integrate with Parallel Computing Toolbox MSc project

Related projects

• bbtools (E. Høgh-Rasmussen) last update: Apr 2006

• RestoreTools (J. Nagy) last update: Mar 2007

Code is available!

http://www.cs.ubc.ca/labs/scl/spot

11 / 11

Thursday, December 9, 2010

Looking Ahead

Large-scale computing (Joint with Felix Herrmann, EOS)

• out-of-core operations borrow ideas from SlimPy

• integrate with Parallel Computing Toolbox MSc project

Related projects

• bbtools (E. Høgh-Rasmussen) last update: Apr 2006

• RestoreTools (J. Nagy) last update: Mar 2007

Code is available!

http://www.cs.ubc.ca/labs/scl/spot

11 / 11

Thursday, December 9, 2010

Looking Ahead

Large-scale computing (Joint with Felix Herrmann, EOS)

• out-of-core operations borrow ideas from SlimPy

• integrate with Parallel Computing Toolbox MSc project

Related projects

• bbtools (E. Høgh-Rasmussen) last update: Apr 2006

• RestoreTools (J. Nagy) last update: Mar 2007

Code is available!

http://www.cs.ubc.ca/labs/scl/spot

11 / 11

Thursday, December 9, 2010

top related