Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Summing the values with looping
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
% 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 comentario
Respuestas (1)
Jonas
el 7 de Dic. de 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 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!