Filter löschen
Filter löschen

the use of the text function.

2 Ansichten (letzte 30 Tage)
metin yilmaz
metin yilmaz am 9 Nov. 2020
Beantwortet: Star Strider am 9 Nov. 2020
Can I name the functions using the function text, or any other, in one step?
x:0:pi/40:4*pi; plotyy(x, sin(x), x, cos(2*x))
This does not work: text(x, sin(x), 'sin', x, cos(2*x), 'cos')
Thank you.

Akzeptierte Antwort

Star Strider
Star Strider am 9 Nov. 2020
This does work, however you may want to reconsdier how you want it to appear:
x = 0:pi/40:4*pi;
figure
plotyy(x, sin(x), x, cos(2*x))
text(x, sin(x), 'sin')
text(x, cos(2*x), 'cos')
Note that I edited the ‘x’ assignment to produce a valid vector.

Weitere Antworten (0)

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by