I'm using output inline for my script but it creates super long data that is displayed, So I want to hide or shorten the list, So is this possible. Thank you.

1 次查看(过去 30 天)

采纳的回答

Walter Roberson
Walter Roberson 2021-12-10
Inside kinetic_mechanism there are assignments to TAG, dA, and dFAE that do not end in semi-colon. You need to add semi-colons to those assignments.
For example,
dA = atanh(TAG, y(2))
would become
dA = atanh(TAG, y(2));
  5 个评论
Walter Roberson
Walter Roberson 2021-12-11
TAG = C(2)'
dA =-k3*(TAG*A)+k4*(FAE*DAG)-k5*(DAG*A)+k6*(FAE*DAG)-k7*(MAG*A)+k8*(FAE*GLY)
dFAE = k3*(TAG*A)-k4*(FAE*DAG)+k5*(DAG*A)-k6*(FAE*DAG)+k7*(MAG*A)-k8*(FAE*GLY)
You did not end any of those lines with semi-colon.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Function Creation 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by