hi, I have the following function g with the values of x
x = linspace(-2,2)
G = @(x) exp(x) .* (x <= 0) + sin(2*pi*x)./max(x,realmin) .* (x>0);
I tried to plot G using
plot(G,x)
but I am getting error. How can I plot G?

 Akzeptierte Antwort

Star Strider
Star Strider am 9 Apr. 2018

1 Stimme

Since ‘G’ is a function handle, you cannot plot it.
You need to call it as a function and plot its output, so plot it either as:
plot(G(x), x)
or:
plot(x, G(x))
depending on what you want.

2 Kommentare

rohail khan
rohail khan am 9 Apr. 2018
thank you so much Star
Star Strider
Star Strider am 9 Apr. 2018
As always, my pleasure.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Labels and Styling finden Sie in Hilfe-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