Brief question: faster to zero before direct computation?
Info
This question is closed. Reopen it to edit or answer.
Show older comments
Hello all, quick question,
in the simplest of examples,
x1a = linspace(-1,1,100);
y1a = zeros(1,100);
y1a = x1a.^3;
Is it a clear computational speed and economy advantage to declare y1a first with zeros, or not, in this simple case?
Is the cube operation one that does not require nor benefit from variable declaration?
Cheers
4 Comments
per isakson
on 18 Dec 2014
Edited: per isakson
on 18 Dec 2014
- y1a = zeros(1,100); offers no advantage. It adds to the execution time.
- "cube operation" is not affected by "variable declaration"
Miguel
on 18 Dec 2014
per isakson
on 18 Dec 2014
Edited: per isakson
on 18 Dec 2014
Not just confusing. It was wrong; a "no" was missing. I've edited the comment.
Miguel
on 18 Dec 2014
Answers (0)
This question is closed.
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!