How to name components of a vector to variables
14 次查看(过去 30 天)
显示 更早的评论
I need help naming my 21x1 matrix s to variables s0-s21. for example, s0=0, s1=0.05,........., s21=1 etc.
c is divided into N subintervals.
I'm not sure if naming them as variables is needed for what i want to achieve, but i want to calculate;
si = i*(c/N) ......eq1
and
si-1 = (i-1)*(c/N)
Please help in doing this the easiest way. See below for what i did so far
c=1;
N=20;
i=0:c:N;
s=(i)*(c/N)
0 个评论
回答(1 个)
James Tursa
2020-11-14
Don't do that. Your downstream programming will be miserable if you do. See this link for better alternatives (cell arrays, structures, etc.)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!