Find how many times a line of code is run

조회 수: 7 (최근 30일)
Falcom Mishtev
Falcom Mishtev 2021년 3월 8일
답변: KSSV 2021년 3월 8일
Need to work out how many times that highlighted line of code will run if the script is entered into matlab. I've entered it myself however im not too sure what to be looking for in the results. Any guidance is appreciated!

채택된 답변

KSSV
KSSV 2021년 3월 8일
count = 0 ;
for j = 1:2:8
count = count+1 ;
calcA = calcA+x ;
end
Check the value of count, it should have run those many times.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by