Summation for every value of "n" (or summation with looping)
Show older comments
% Hi, i need to find the "Q" variable for every instance of "n" and divide those values by "Pr"
clear all
clc;
n=[1:1:50]
B=7.5 % angle value
%Q= (1+2*(cos(n1*B))^(5/2)+2*(cos(n2*B)^(5/2) + ... ); --> this is an
%example of how iterations should be in short; "1+2*(cos(n*B))^(5/2)"
Pr= 395
%P1= Pr/Q
Answers (1)
Like so:
B=7.5; % angle value
fn = @(n) (1+2*cos(n*B)).^5/2;
n=1:50;
Qn = fn(n);
Q = sum(Qn);
Pr= 395;
P1= Pr/Q;
disp(P1)
% Or do you mean
Q(1) = fn(1);
for n = 2:50
Q(n) = fn(n) + Q(n-1);
end
P1 = Pr./Q;
disp(P1)
4 Comments
Erdem Turan
on 15 Nov 2022
Alan Stevens
on 15 Nov 2022
Yes, that looks right.
Erdem Turan
on 7 Dec 2022
Alan Stevens
on 7 Dec 2022
Edited: Alan Stevens
on 7 Dec 2022
Looks like it should be
fn = @(n) 2*cos(n*B).^(5/2);
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!