hello everybody ,
I have a small code , I want to save the values of ab so in newwidt so that I can call them later newwidt(1) ,newwidt(2) ....etc
Sn is a 7*9 matrix , the results are not saving, I know it false as I wrote (saving part).
[a,b]=size(Sn);
newwidt=zeros(size(Sn));
for i=1:b
ab=repmat(Sn(:,i),1,b)
newwidt=ab(:,:)
end
thanks

 采纳的回答

aborghes
aborghes 2017-6-19

1 个投票

does changing newwidt=ab(:,:) to newwidt(:)=ab(:,:) do what you are looking for? This saves each value in an array of doubles.

3 个评论

hi ! thank you for your answer , unfortunately no , in this case it is saving only the last matrix for newwidt and I can't call the previous values/matrix of it.
sorry about that, i miss-typed. try newwidt(:,:,i). that saves each result in a new array that are all accessible.
Amazing !! it's woking, thank you very much :)

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心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!

Translated by