Run time issue

4 views (last 30 days)
Pankaj
Pankaj on 15 Feb 2012
Edited: Greg Heath on 13 Oct 2013
I have a code that returns 200X200 matrix with each element as a structure. The code calculates each structure and stores it. for each of this data point the code scans a 3000 points array and generates some statistics. each structure further stores that all the data. some off it has overlap but not much.
the problem is that it is all too slow - takes 4 hours of execution time. can i make it fast somehow. Is there anything that i can do to make my code run faster? also what are the general tips to make a program run fast?
Lastly, during execution time can i store the data from RAM to physical memory? there is a space issue at times.

Answers (1)

Jan
Jan on 15 Feb 2012
If your RAM is low, install more. If you are running a 32 bit Matlab, install a 64 bit version.
Without seeing the code it is impossible to create a specific advice. In general you can use profile to find the bottlenecks of the program. Unfortunately the JIT-acceleration is influenced in the profiling-mode, such that e.g. actually fast loops seem to use more time.
  2 Comments
Pankaj
Pankaj on 15 Feb 2012
alright...another thing, if i run a program and get a data set. can i save/store it somewhere and lad it later. the system seems to lose it when i close matlab.
Jan
Jan on 15 Feb 2012
See: "help save" and "doc save".

Sign in to comment.

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!