How do I fprintf a title for every third iteration in a loop?

This is the output I have to achieve. I'm able to get the reactions but I don't know how to get the Reaction sub mechanism: # title for every third reaction and the matrix shown after every third reaction. I screenshotted the output starting at sub reaction 7 because the first 6 sub reactions began with r1 which could be solved with an if statement within the loop like I initially did. The sub reactions go from 1-15.
Thanks for the help!

답변 (1개)

Jos (10584)
Jos (10584) 2018년 3월 3일
In pseudocode it would look like this:
if mod(linecounter,3)==0
print header
end
print line
linecounter = linecounter + 1

카테고리

도움말 센터File Exchange에서 Fluid Mechanics에 대해 자세히 알아보기

태그

질문:

J
J
2018년 3월 3일

답변:

2018년 3월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by