How can I take an integer like n=1:1:50 and get the output for each value?
16 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to plot my output for each input and the input is from 1 to 50, but I am not sure why my code is not working.
n=1:50; %my range, I want to check for each n values
f=n*175*10^6; % want to get frequency for each n
c=(sin(n*pi*d))/(n*pi*d) %d,tr,T these are my fixed values
d1=(sin((n*pi*tr)/T))/((n*pi*tr)/T);
In=2*d*Ipp*c*d1;
E=(In*f*L)/(0.8*r); %I am not getting E for each n values
0 Commenti
Risposte (2)
Walter Roberson
il 30 Ott 2021
d = rand() %since it was not defined
T = rand() %since it was not defined
tr = rand() %since it was not defined
L = rand() %since it was not defined
r = rand() %since it was not defined
Ipp = randi(255); %since it was not defined
n=1:50; %my range, I want to check for each n values
f=n*175*10^6; % want to get frequency for each n
c=(sin(n*pi*d))./(n*pi*d) %d,tr,T these are my fixed values
d1=(sin((n*pi*tr)/T))./((n*pi*tr)/T);
In=2*d*Ipp*c.*d1;
E=(In.*f*L)/(0.8*r);
plot(n, E)
0 Commenti
Sulaymon Eshkabilov
il 30 Ott 2021
Without knowing the size of your variables and just presuming some variables to be scalar and others to be a vector, here is the corrected code that is based on the color operator (:) :
n=1:50; %my range, I want to check for each n values
f=n*175*10^6; % want to get frequency for each n
c=(sin(n(:).*pi*d))./(n(:).*pi*d) %d,tr,T these are my fixed values
d1=(sin((n(:).*pi*tr)./T))./((n(:)*pi*tr)./T);
In=2*d(:).*Ipp*c*d1;
E=(In*f(:).*L)./(0.8*r); %I am not getting E for each n values
Presumably, you have here d and L or r to be a vector with a certain length.
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!