MATLAB: How to declare vector of size 64

vector

I am trying to declare a vector of size 64 like zeros(64) but it gives all zero values,so i want to know how to declare vector of size 64

Best Answer

There is no declaration of vectors in Matlab, you can pre-allocate memory by creating your array with zeros or whatever you want.
Related Question