Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Summing the values with looping
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
% 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
1 Kommentar
Antworten (1)
Jonas
am 7 Dez. 2022
you could generate all values you asked for with a single expression. if you want the sum until a specific n, use cumsum() on the resulting vector
n=1:50;
B=7.5;
Q=[1 2*cos(n*B).^(5/2)]
size(Q)
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!