Clear Filters
Clear Filters

How to avoid a loop using vectors?

1 view (last 30 days)
Yuval
Yuval on 9 Nov 2013
Edited: Azzi Abdelmalek on 9 Nov 2013
Hi, Is there a way to avoid using a for loop (or any loop for that matter) in the following?:
h=(10^-1).^[1:8];
x=pi;
r=5e-6.*rand(16,1);
for i=1:8
fminush(i)=cos(x-h(i))+r(i);
fplush(i)=cos(x+h(i))+r(i+8);
end
fder=(fplush-fminush)./(2*h);
plot(log(h),log(abs(-sin(x)-fder)))
I have tried redefining r to be of size 8 then adding it to both fminush and fplush, to no avail. Matlab would still alert for "matrix dimensions must agree". I'd be thankful for some advice.

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 9 Nov 2013
Edited: Azzi Abdelmalek on 9 Nov 2013
h=(10^-1).^[1:8];
x=pi;
r=5e-6.*rand(1,16);
fminush1=cos(x-h)+r(1:8);
fplush1=cos(x+h)+r(9:16)
fder=(fplush-fminush)./(2*h);
plot(log(h),log(abs(-sin(x)-fder)),'r')

Categories

Find more on Loops and Conditional Statements 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!