Homepage of the HATA group at DTU

Software.Software History

Hide minor edits - Show changes to output

11.06.2014, at 11:03 UTC by 109.56.130.118 -
Added lines 5-7:
No available software at the moment.

>>comment<<
Changed lines 9-11 from:
I am currently writing a Matlab toolbox for finite frames. Please check back here in 2013.

>>comment<<
to:
I am currently writing a Matlab toolbox for finite frames. Please check back here in 2015.
29.11.2012, at 13:34 UTC by 130.225.84.233 -
Changed line 6 from:
I am currently writing a Matlab toolbox for finite frames. Please check back here late 2012.
to:
I am currently writing a Matlab toolbox for finite frames. Please check back here in 2013.
25.03.2012, at 21:27 UTC by 127.0.0.1 -
Changed line 6 from:
I am currently writing a Matlab toolbox for finite frames. Please check back here around late 2012.
to:
I am currently writing a Matlab toolbox for finite frames. Please check back here late 2012.
25.03.2012, at 13:10 UTC by 127.0.0.1 -
Changed line 6 from:
I am currently writing a Matlab toolbox for finite frames. Please check back here around July 2012.
to:
I am currently writing a Matlab toolbox for finite frames. Please check back here around late 2012.
25.03.2012, at 12:17 UTC by 127.0.0.1 -
Changed line 6 from:
I am currently writing a Matlab toolbox for finite frames.
to:
I am currently writing a Matlab toolbox for finite frames. Please check back here around July 2012.
25.03.2012, at 12:16 UTC by 127.0.0.1 -
Changed lines 5-6 from:
!!Matlab Toolbox for Shearlets
A Matlab Toolbox for Shearlets will be available from [[http://www
.shearlab.org]] soon.
to:
!!Matlab Toolbox for Finite Frames
I am currently writing a Matlab toolbox for finite frames
.
Changed line 8 from:
to:
>>comment<<
Added line 44:
>><<
13.08.2009, at 09:40 UTC by 130.225.72.109 -
Changed line 9 from:
!!!Matlab code (Test Example)
to:
!!!Matlab code (NB! Only a Test Example showing Syntax Highlighting)
05.08.2009, at 08:28 UTC by 131.173.40.72 -
Changed line 6 from:
A Matlab Toolbox for Shearlets will be available from [[http://www.shearlet.org]] soon.
to:
A Matlab Toolbox for Shearlets will be available from [[http://www.shearlab.org]] soon.
05.08.2009, at 08:27 UTC by 131.173.40.72 -
Changed line 6 from:
A Matlab Toolbox for Shearlets(?) will be available from this site.
to:
A Matlab Toolbox for Shearlets will be available from [[http://www.shearlet.org]] soon.
Changed line 29 from:
(:source lang=matlab linenum header="Approximating pi square over 6" highlight=4 :) [@
to:
(:source lang=matlab linenum header="Approximating pi square over 6" highlight=4 -getcode :) [@
Changed line 28 from:
Modify @@n=10@@ in line 6 to obtain better approximations.
to:
Modify @@n=10@@ in line 4 to obtain better approximations.
Changed line 11 from:
(:source lang=matlab linenum header="Approximating pi square over 6" highlight=6 :) [@
to:
(:source lang=matlab :) [@
Changed lines 27-29 from:
>>comment<<
%codebox% [
@% for loops in Matlab
to:
Modify @@n=10@@ in line 6 to obtain better approximations.
(:source lang=matlab linenum header="Approximating pi square over 6" highlight=4 :) [@

% for loops in Matlab
Changed lines 33-34 from:
n=10;
to:
n=30;
Added lines 43-58:
sprintf('Approximation with %d terms: Q = %0.10g',n,Q)@]

>>comment<<
%codebox% [@% for loops in Matlab

% Set the number of terms
n=10;

% initialize sum
Q=0;

% summing over k
for k=1:n
Q=Q+1/k^2;
end
Changed lines 60-61 from:
>><<
Modify @@n=10@@ to obtain better approximations.
to:
>><<
Changed line 11 from:
(:source lang=matlab linenum :) [@
to:
(:source lang=matlab linenum header="Approximating pi square over 6" highlight=6 :) [@
Changed line 11 from:
(:source lang=matlab :) [@
to:
(:source lang=matlab linenum :) [@
Changed line 27 from:
to:
>>comment<<
Changed lines 42-43 from:
Modify @@n=10@@ to obtain better approximations.
to:
>><<
Modify @@n=10@@ to obtain better approximations.
Changed lines 15-16 from:
n = 10;
to:
n=10;
Changed lines 18-19 from:
Q = 0;
to:
Q=0;
Changed line 22 from:
Q = Q+1/k^2;
to:
Q=Q+1/k^2;
Changed lines 15-16 from:
n=10;
to:
n = 10;
Changed lines 18-19 from:
Q=0;
to:
Q = 0;
Changed line 22 from:
Q=Q+1/k^2;
to:
Q = Q+1/k^2;
Added lines 11-27:
(:source lang=matlab :) [@
% for loops in Matlab

% Set the number of terms
n=10;

% initialize sum
Q=0;

% summing over k
for k=1:n
Q=Q+1/k^2;
end

sprintf('Approximation with %d terms: Q = %0.10g',n,Q)@]
Changed line 10 from:
We want to approximate the sum {$\sum_{k=1}^\infty 1/k^2$}. This is implemented in Matlab by the following code:
to:
We want to approximate the sum {$\sum_{k=1}^\infty 1/k^2=\pi^2/6$}. This is implemented in Matlab by the following code:
Changed line 1 from:
%define=codebox block bgcolor=#cccccc margin="0.5em 0em 0.5em 2em" padding=0.5em width=95pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#dddddd margin="0.5em 0em 0.5em 2em" padding=0.5em width=95pct border="1px dotted red"%
Changed line 1 from:
%define=codebox block bgcolor=#cccccc margin="0.5em 0em 0.5em 2em" padding=0.5em width=90pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc margin="0.5em 0em 0.5em 2em" padding=0.5em width=95pct border="1px dotted red"%
Changed lines 10-11 from:
We want to approximate the sum {$\sum_{n=1}^\infty 1/n^2$}. This is implemented in Matlab by the following code:
to:
We want to approximate the sum {$\sum_{k=1}^\infty 1/k^2$}. This is implemented in Matlab by the following code:
Added line 25:
Modify @@n=10@@ to obtain better approximations.
Changed line 1 from:
%define=codebox block bgcolor=#cccccc margin="5em 1em 1em 4em" padding=0.5em width=100pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc margin="0.5em 0em 0.5em 2em" padding=0.5em width=90pct border="1px dotted red"%
Changed line 1 from:
%define=codebox block bgcolor=#cccccc margin="1em 1em 1em 4em" padding=0.5em width=100pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc margin="5em 1em 1em 4em" padding=0.5em width=100pct border="1px dotted red"%
Changed line 1 from:
%define=codebox block bgcolor=#cccccc margin="1em 0em 1em 4em" padding=0.5em width=100pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc margin="1em 1em 1em 4em" padding=0.5em width=100pct border="1px dotted red"%
Changed line 1 from:
%define=codebox block bgcolor=#cccccc margin="1em 0em 0em 4em" padding=0.5em width=100pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc margin="1em 0em 1em 4em" padding=0.5em width=100pct border="1px dotted red"%
Changed line 1 from:
%define=codebox block bgcolor=#cccccc margin="1em 2em 3em 4em" padding=1em width=90pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc margin="1em 0em 0em 4em" padding=0.5em width=100pct border="1px dotted red"%
Changed line 1 from:
%define=codebox block bgcolor=#cccccc margin=1em padding=1em width=90pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc margin="1em 2em 3em 4em" padding=1em width=90pct border="1px dotted red"%
Changed line 1 from:
%define=codebox block bgcolor=#cccccc padding=1em width=90pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc margin=1em padding=1em width=90pct border="1px dotted red"%
Changed lines 1-2 from:
%define=codebox block bgcolor=#bbbbbb center width=90pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc padding=1em width=90pct border="1px dotted red"%
Changed line 25 from:
sprintf('Approximation with %d terms: Q = %0.10g',n,Q)@]
to:
sprintf('Approximation with %d terms: Q = %0.10g',n,Q)@] %%
Changed line 1 from:
%define=codebox block bgcolor=gray width=90pct border="1px dotted red"%
to:
%define=codebox block bgcolor=#bbbbbb center width=90pct border="1px dotted red"%
Changed line 1 from:
%define=codebox block bgcolor=#cccccc border="1px dotted red"%
to:
%define=codebox block bgcolor=gray width=90pct border="1px dotted red"%
Changed lines 1-2 from:
%define=codebox block bgcolor=#dddddd border="1px dotted red"%
to:
%define=codebox block bgcolor=#cccccc border="1px dotted red"%
Changed lines 10-13 from:
We want to approximate the sum {$\sum_{n=1}^\infty 1/n^2$}. This is implemented in Matlab by the following code:

%frame% We want to approximate the sum {$\sum_{n=1}^\infty 1/n^2$}. This is implemented in Matlab by the following code:
to:
We want to approximate the sum {$\sum_{n=1}^\infty 1/n^2$}. This is implemented in Matlab by the following code:
Changed lines 12-25 from:
%frame% [@% for loops in Matlab

% Set the number of terms

n=10;

% initialize sum
Q=0;

% summing over k
for k=1:n
Q=Q+1/k^2;
end

sprintf('Approximation with %d terms: Q = %0.10g',n,Q)@]
to:
%frame% We want to approximate the sum {$\sum_{n=1}^\infty 1/n^2$}. This is implemented in Matlab by the following code:
Added lines 11-26:

%frame% [@% for loops in Matlab

% Set the number of terms
n=10;

% initialize sum
Q=0;

% summing over k
for k=1:n
Q=Q+1/k^2;
end

sprintf('Approximation with %d terms: Q = %0.10g',n,Q)@]
Changed line 1 from:
%define=codebox block bgcolor=#dddddd border="2px dotted red"%
to:
%define=codebox block bgcolor=#dddddd border="1px dotted red"%
Changed lines 10-11 from:
Approximations of $$\sum_{n=1}^\infty$$ is implemented in Matlab by the following code:
to:
We want to approximate the sum {$\sum_{n=1}^\infty 1/n^2$}. This is implemented in Matlab by the following code:
Changed line 10 from:
This is implemented in Matlab by the following code:
to:
Approximations of $$\sum_{n=1}^\infty$$ is implemented in Matlab by the following code:
Changed line 1 from:
%define=codebox block bgcolor=#ddddff border="2px dotted red"%
to:
%define=codebox block bgcolor=#dddddd border="2px dotted red"%
Added lines 1-2:
%define=codebox block bgcolor=#ddddff border="2px dotted red"%
Changed lines 11-18 from:
%p bgcolor=#ccdddd% This is implemented in Matlab by the following code:

%define=box block bgcolor=#ddddff border="2px dotted red"%

%box% Test test

%box
% [@% for loops in Matlab
to:
%codebox% [@% for loops in Matlab
Changed line 12 from:
%define=box block bgcolor=#ddddff border="2px dotted blue"%
to:
%define=box block bgcolor=#ddddff border="2px dotted red"%
Changed lines 16-17 from:
%box%
[@% for loops in Matlab
to:
%box% [@% for loops in Matlab
Added line 16:
%box%
Changed lines 12-14 from:
%define=box block bgcolor=#ddddff
border="2px dotted blue"%
to:
%define=box block bgcolor=#ddddff border="2px dotted blue"%
Changed lines 16-18 from:
%box% [@% for loops in Matlab
to:
%box% Test test

[@% for loops in Matlab
Changed lines 12-16 from:
[@% for loops in Matlab
to:
%define=box block bgcolor=#ddddff
border="2px dotted blue"%


%box%
[@% for loops in Matlab
Changed lines 10-11 from:
%p bgcolor=#ccdddd%
to:
%p bgcolor=#ccdddd% This is implemented in Matlab by the following code:
Changed lines 10-12 from:
%p bgcolor=#ffeeee% Test
to:
%p bgcolor=#ccdddd%
Changed lines 10-13 from:
%p bgcolor=#ffeeee% [@% for loops in Matlab
to:
%p bgcolor=#ffeeee% Test


[@% for loops in Matlab
Changed lines 9-10 from:
[@% for loops in Matlab
to:

%p bgcolor=#ffeeee%
[@% for loops in Matlab
Changed lines 3-22 from:
Matlab Toolbax for Shearlets
to:
!!Matlab Toolbox for Shearlets
A Matlab Toolbox for Shearlets(?) will be available from this site.


!!!Matlab code (Test Example)
This is implemented in Matlab by the following code:
[@% for loops in Matlab

% Set the number of terms
n=10;

% initialize sum
Q=0;

% summing over k
for k=1:n
Q=Q+1/k^2;
end

sprintf('Approximation with %d terms: Q = %0.10g',n,Q)@]
Changed line 1 from:
!!Software
to:
!Software
Changed line 1 from:
!!!Software
to:
!!Software
Added lines 1-3:
!!!Software

Matlab Toolbax for Shearlets