How to have only one output from each cell ? (Live Scripts)

21 views (last 30 days)
I am starting to create new scripts using the live editor .I will like to have one output per cell (like in jupyter notebook) and I haven't found out a simple way to do it. I don’t like that the code gets split to provide an output on the middle of the cell .
As an example , I provide the following representation . I would like to have a unified output after each cell.
syms x
f = tanh(x);
ezplot(f,[-10,10]);
disp(['We have this formula:'])
f
Thanks for your help !!
  2 Comments
Dyuman Joshi
Dyuman Joshi on 15 Nov 2022
I am not sure what you mean by one output per cell.
Is this what you are looking for?
syms x
f = tanh(x);
disp(['We have this formula: ' char(f)])
We have this formula: tanh(x)
Enrique
Enrique on 15 Nov 2022
Sorry If I haven’t explained my self properly . I would like to have have a single output in which it is included all the output contents from the cell .
I don’t like the fact that when a plot is displayed or I write a disp() function the code gets split .

Sign in to comment.

Accepted Answer

Chris
Chris on 15 Nov 2022
Edited: Chris on 15 Nov 2022
These are "sections" in Matlab parlance, because "cell" is taken.
There are three display modes for live scripts which can be toggled with squares somewhere in the editor (probably to the right of the script):
You could put all your commands on one line for the "Output inline" option:
ezplot(f,[-10,10]); disp(['We have this formula:']);f
Or choose the "Hide code" option to group the output together, and copy the code into a text block (but that's not beautiful).
Or select "Output on right" to have the output in a separate column.
I've worked around this behavior without realizing it was bothersome, but I think you'll need to submit a feature request to have it work exactly as you want.

More Answers (0)

Categories

Find more on Function Creation in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!