Hi, I have a loop which calculate 110 values of velocity, i want to assign all these values in one array. Every time i try only the last value is assigned. Any help ????

Hi, I have a loop which calculate 110 values of velocity, i want to assign all these values in one array. Every time i try only the last value is assigned. Any help ????

3 个评论

Please post your code, or a subset of it, that produces the problem. It is likely incorrect indexing, but we need to see your code to help you.
I can't imagine the code either. I'm still waiting for the Mathworks to give me the beta version of their Mind Reading Toolbox. It's been a frustratingly long wait, especially when we see so many situations, just like this one, where we could put it to immediate use.
I already know what's in the Mind Reading Toolbox:
function Read_Programmers_Mind(varargin)
disp('Ask Walter')
end
;-)

请先登录,再进行评论。

回答(2 个)

You probably have something like
for i = 1 : 110
velocity = ... some function involving i ...
end
Instead you need to use
for i = 1 : 110
velocity(i) = ... some function involving i ...
end

类别

帮助中心File Exchange 中查找有关 Loops and Conditional Statements 的更多信息

提问:

2013-2-17

Community Treasure Hunt

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

Start Hunting!

Translated by