Hi, can you help me fix my code? How can I convert this to a matrix using if/while/for statements?
1 view (last 30 days)
Show older comments
format long G
MERfgh = [];
i = 1;
%for i=1:11
MERfgh(i,1) = MERfff(i,1);
for j=1:11
MERfgh(i,2) = MERfff(j,1);
i = i+1;
end
%end
MERfgh
I WANT IT TO LOOK LIKE THIS:
0 Comments
Answers (2)
DGM
on 3 Jul 2023
Consider the example:
% some data in a column vector
MERfff = (21:31).';
% rearrange it
[xx yy] = meshgrid(MERfff);
MERfgh = [xx(:) yy(:)]
1 Comment
James Tursa
on 3 Jul 2023
Also consider this example using element-wise raise-to-power:
10.^(-1:1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!