I need some dummy data to a structure such as <64×64 double>. I am able to get <1×64 double> with 1:64 but how to get more dimensions to get <64x64 double> in Matlab? I know I can do it like [1 2 3 4 ... 64; 1 2 3 ...64; ...; 1 2 3 ... 64] but I am sure there must be some ready command do this fast with arbitrary dummy data. I am also looking for other dummy data generation commands. For example, how can I verify the data structure? Is the supposed way to look for the Workspace window for Name/Value/etc attributes?
I need some dummy data to a structure such as <64×64 double>. I am
Share
create a 64×64 all zeros:
all ones:
random numbers:
1:64^2: