how can i determine the time it took to run an input?

1 Ansicht (letzte 30 Tage)
Morena Patrick Malashe
Morena Patrick Malashe am 10 Apr. 2019
Beantwortet: Jan am 10 Apr. 2019
n = length(V);
S = zeros(n,2*n);
for i = 1:n
for j = 2:i
for k = 1:n
S(i,j+k) = V(i);
end
end
end
First determine the number of instructions as a function of n, thus find T(n) for a single execution
of this algorithm?
  2 Kommentare
madhan ravi
madhan ravi am 10 Apr. 2019
have you seen tic toc ? if you want to know the running time of a script.
Jan
Jan am 10 Apr. 2019
Bearbeitet: Jan am 10 Apr. 2019
@Morena: I've formatted your code to make it easier to read. You can do this by your own also.
"determine the number of instructions as a function of n"
This is not trivial. What exactly is "an instruction"?

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Jan
Jan am 10 Apr. 2019
You can use tic and toc, or more accurately timeit.

Kategorien

Mehr zu MATLAB Coder finden Sie in Help Center und File Exchange

Produkte


Version

R11.1

Community Treasure Hunt

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

Start Hunting!

Translated by