How to write a code for an iteration?
2 views (last 30 days)
Show older comments
Victor Fletcher
on 14 Dec 2018
Commented: Victor Fletcher
on 14 Dec 2018
Hi there I would like to run an iterative code.
I would like to start with a matrix f0=[a,b,c,d]
Then I would like to compute the following operation
f1=[a+b,c+d,a-b,c-d]
I would like this to be done iteratively and so that the script uses the value before.
that is f100 uses the a,b,c and value from f99.
How would I do this?
0 Comments
Accepted Answer
Dennis
on 14 Dec 2018
f=zeros(100,4);
f(1,:)=[1 5 10 15];
for i=2:100
f(i,:)=[f(i-1,1)+f(i-1,2),f(i-1,3)+f(i-1,4),f(i-1,1)-f(i-1,2),f(i-1,3)-f(i-1,4)];
end
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!