From: Amey on 20 Jun 2010 09:26 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 20 Jun 2010 09:34 "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 20 Jun 2010 09:40 "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
|
Pages: 1 Prev: how can you get data from GUI to workspace? Next: multiple line graphs on single graph window |