Effacer les filtres
Effacer les filtres

How to find out mean within a loop?

2 vues (au cours des 30 derniers jours)
Prathap Sakalenahalli Honnegowda
Number_of_measurements= 5;
numfreq = 201;
k= 50;
for n = 1:Number_of_measurements
filename = ['S_30_',num2str(n),'.s1p'];
S = sparameters(filename);
Z = zparameters(filename);
freq = S.Frequencies; % Frequency values are the same for all files
frequency=freq(k);
z11 = rfparam(Z,1,1);
Capacitance1 = 1/abs(2*pi.*freq(k).*z11(k))
end
I want to calculate mean for this Capacitance1. If I am using A=mean(Capacitance1) It is just giving me the last value of Capacitance1.
To be clear using above loop, I will have 5 capacitance1 values after running it, but when trying to find out mean, it is only giving me the last value of capacitance1. I want it for all values of capacitance1. Help me finding it!
  2 commentaires
KL
KL le 12 Déc 2017
Please format your code. Select the code snippet in your post and click {} Code button
Prathap Sakalenahalli Honnegowda
Now?

Connectez-vous pour commenter.

Réponse acceptée

KL
KL le 12 Déc 2017
Store the result from each iteration and then calculate mean outside the loop.
Capacitance1 = zeros(1,Number_of_measurements);
for n = ...
...
Capacitance1(n) = 1/abs(2*pi.*freq(k).*z11(k));
end
Cap_mean = mean(Capacitance1);

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by