I want to store data in a matrix from a for loop using non integer indexing

1 次查看(过去 30 天)
Here is the simple version of my code.
x = [5:0.1:20];
for v = 1:.1:10
R = v.*x;
mat(v,:)=R;
end
I want to store data in a matrix 'mat' for each iteration . Please suggest me how to do this.

采纳的回答

Sulaymon Eshkabilov
Hi,
There are several ways of doing it:
  1. Most efficient way:
x = [5:0.1:20];
v = (1:.1:10)';
MAT=v.*x;
2. Least efficient way:
for ii=1:numel(v)
MAT(ii,:)=v(ii)*x;
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by