Need help in taking out values from a matrix
1 次查看(过去 30 天)
显示 更早的评论
Hello All, I am in a need of a guidance to taking out values from the matrix.
Here is my code:
for ii = 1:size(value,2)
% define f and minor radius for this iteration
f = value(ii);
[pres{ii},flag] = pressure(x,y,z{ii});
Now I want to plot a specific row out of the pressure. So my second for loop is:
for i=1:80
pank(i)=pres{ii(10,i)};
end
plot(x,pank)
As you can see I want to plot pres(10,i) of every length so I tried pres{ii(10,i)} which I not correct. I hope I am making some sense. I need help in plotting this for every value of ii.
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!