Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to report number of operations to evaluate for example matrix/matrix (dense or sparse) in MATLAB or octave.

share|improve this question
I very highly doubt that you can get Matlab or Octave to do this because they are using LAPACK or the like to do this sort of thing which, as far as I know, don't have any options to output the number of operations used. – Justin Peel May 19 '10 at 18:57
@Justin I thought there would be something like driy-run mode to only estimate operations. – Anycorn May 19 '10 at 19:00

2 Answers

up vote 1 down vote accepted

Haven't tried it personally, but the Lightspeed Matlab Toolbox claims to support flops counting. Apparently the flops command was a valid option in MATLAB up through version 5.

share|improve this answer
octave actually has it, but always returns 0 (empty Matlab compatibility) – Anycorn May 19 '10 at 19:10

Not exactly what you're looking for, but you can use profile to get the cpu time for an operation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.