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

21 Ansichten (letzte 30 Tage)
Enrique
Enrique am 15 Nov. 2022
Kommentiert: Enrique am 17 Nov. 2022
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 Kommentare
Dyuman Joshi
Dyuman Joshi am 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 am 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 .

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Chris
Chris am 15 Nov. 2022
Bearbeitet: Chris am 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.
  1 Kommentar
Enrique
Enrique am 17 Nov. 2022
Thanks for your help! Perhaps I only need to get used to live scripts

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Function Creation finden Sie in Help Center und File Exchange

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by