필터 지우기
필터 지우기

How to find the efficiency of an algorithm?

조회 수: 2 (최근 30일)
Sadiq Akbar
Sadiq Akbar 2023년 2월 9일
편집: Sadiq Akbar 2023년 2월 9일
I have an algorithm fpa1. How can I find its efficiency? All the required files are in the attachment. You can run the main file to run the algorithm. But how to find its efficiency?

답변 (1개)

Tushar Behera
Tushar Behera 2023년 2월 9일
Hi Sadiq,
I am assuming you want to know how efficient your code is.
You can utilise MATLAB's "profile" built-in function to gauge how effective your code is. The "profile" function creates a report that includes performance data and the amount of time spent in each function. The "tik" and "toc" functions can also be used to calculate how long it takes a chunk of code to run.
For example;
profile on
n = 100;
M = magic(n);
profile viewer
%%%%
tic;
n = 100;
M = magic(n);
toc;
You can read more abut it in the following link:
Regards,
Tushar
  댓글 수: 1
Sadiq Akbar
Sadiq Akbar 2023년 2월 9일
편집: Sadiq Akbar 2023년 2월 9일
Thanks a lot dear Tushar Behera for your kind response. Yes, you are right. I have already included the tic and toc commands inside, but in my case the parametres change i.e., in 1st case:
u=[-25 50];
and run it, so it gives me execution time. Then I increase parametrs to 3 as below:
u=[-5 5 65];
and again run it, so it gives me different time. Again I change my parameters to 4 as below:
u=[-20 5 35 -35];
and I run it and this time it gives me different time. So, I am confused which time should I take for its efficiency?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by