How can I store this data?
1 view (last 30 days)
Show older comments
Mset is a 511x54 double and i would like to store the true or false statement for each iteration. Any advice would be much appreciated.
L=zeros(511,54);
for i=1:511
for j=1:54
if Mset(i,j)==1
L(i,j)='True';
else
L(i,j)='False';
end
end
end
0 Comments
See Also
Categories
Find more on Adding custom doc in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!