Good morning
I am very bad in programming
I want to translate my following problem in Matlab script
The problem is as follow
- I will enter variable (s) dimension of matrix n*p (n row, p column)
-I start my treatement in the fisrt row of the matrix
s1=s(:,1);
[c,l] = wavedec(p,5,'haar');
ca5 = appcoef(c,l,'haar',5);
-and i want to go to the next row, s(:,2);
make the same opperation and but the output (ca5 of the fisrt, second ...until p) in matrix
So, how to make a loop, to advance in column of matrix (s)
create matrix (ca5) which will be filled automatically each column (s) has treated
Please could someone translate it in matlab script
p=t0, t1...
I dont understand very well what you are trying to do. Could you explain where is exactly the problem in terms of programming without the terminology of your project?
You can simply create a matrix of desired dimension by using many matlab bulit-in commmand, e.g. ones (2,3) or zeros (3,4) etc. These matrix can be filled with external data. Please explain your problem more precisely...I will try to help.