Re: i want to declare a matrix of n*m size-------------------------how



Hi,

You can define values for n and m, and declare it like:

a=randn(n,m)

or define n and m to be the dimensions of your matrix:

[n,m]=size(a)

hope that helped :)
.