Is it possible to increase solving time ?
조회 수: 1 (최근 30일)
이전 댓글 표시
I am doing nowadays a project in which there are many matrix calculations etc. therefore the solving time is relative long ?
Is it possible to decrease solving time by doing sth ? increasing ram usage or anything else ?
댓글 수: 0
채택된 답변
David Sanchez
2014년 3월 5일
The time taken by your code depends on the way you coded the algorithm. Using built-in function might improve the performance. If you pasted samples of your algorithm would help in providing more specific advises.
댓글 수: 0
추가 답변 (2개)
Karthik Karri
2014년 3월 5일
The time taken depends upon the number of loops used in the code. Try to decrease the number of loops in the code. so if you doing any calculation element wise, try to avoid it and instead consider it as a set of 1D arrays . This is more generalized answer but it will depend on the objective of your code.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!