From: Amey on
I have written a MATLAB code for my project. I have used many in-built functions like the find function, intersect, bwlabel, etc. I wanted to know how to calculate the time complexity of my program because it uses many MATLAB in-built functions. The McCabe complexity of the code written is 13. Please help me to calculate the time complexity of the code.

Awaiting replies from fellow MATLAB users and experts here. Thanks.
From: us on
"Amey " <ameydhar(a)gmail.com> wrote in message <hvl4td$9sr$1(a)fred.mathworks.com>...
> I have written a MATLAB code for my project. I have used many in-built functions like the find function, intersect, bwlabel, etc. I wanted to know how to calculate the time complexity of my program because it uses many MATLAB in-built functions. The McCabe complexity of the code written is 13. Please help me to calculate the time complexity of the code.
>
> Awaiting replies from fellow MATLAB users and experts here. Thanks.

a hint:

help profile;

us
From: Wayne King on
"Amey " <ameydhar(a)gmail.com> wrote in message <hvl4td$9sr$1(a)fred.mathworks.com>...
> I have written a MATLAB code for my project. I have used many in-built functions like the find function, intersect, bwlabel, etc. I wanted to know how to calculate the time complexity of my program because it uses many MATLAB in-built functions. The McCabe complexity of the code written is 13. Please help me to calculate the time complexity of the code.
>
> Awaiting replies from fellow MATLAB users and experts here. Thanks.

Hi Amey, you mean like:

profile on
plot(magic(35))
profile viewer

Obviously, run your program in place of plot(magic(35));

Wayne