Tic and Toc Function

For my engineering class I had to make a while loop to find the average of a data set and use tic/toc to time the process. My code is posted below but for some reason when I run tic/toc it says it takes 7 seconds. I'm just not sure this is right because a few of my classmates told me theirs was around 1 second and when I time it myself it doesn't take 7 seconds. If someone could tell me where my error is if there is one I would appreciate it!

4 Commenti

sorry here is my code!
y=load('ClassSDPprep_watts.txt');
tic;
sum=0;
i=1;
while i<=length(y);
sum=sum+y(i);
i=i+1;
end
Average
time=toc
Walter Roberson
Walter Roberson il 29 Ott 2017
We recommend against using a variable named "sum", as it is almost certain that at some point you will have a variable with that name at at time that you want to use the sum() function.
Walter Roberson
Walter Roberson il 29 Ott 2017
Modificato: Walter Roberson il 29 Ott 2017
You have not given us any information about what Average does.
You could improve your performance by calculating length(y) once before the loop and using that variable. With your current code it needs to recalculate length(y) every step.
Amanda Wojcik
Amanda Wojcik il 29 Ott 2017
Ok thank you that makes sense! When I copied the code I forgot to include average=sum/length(y)

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange

Richiesto:

il 29 Ott 2017

Commentato:

il 29 Ott 2017

Community Treasure Hunt

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

Start Hunting!

Translated by