Plotting two linear equations

Hi. How can i plot this equation between (-5,2) values
f(x) =
  • -1 ----> x<-1
  • x^2+x ------> -1 <= x < 2

 Respuesta aceptada

Star Strider
Star Strider el 16 de Mzo. de 2018

0 votos

Use ‘logical indexing’:
x = linspace(-5,2);
f = @(x) (-1).*(x < -1) + (x.^2 + x).*((x >= -1) & (x < 2));
figure(1)
plot(x, f(x))
grid

2 comentarios

Sam Oznc
Sam Oznc el 17 de Mzo. de 2018
Thank you so much
Star Strider
Star Strider el 17 de Mzo. de 2018
As always, my pleasure.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Preguntada:

el 16 de Mzo. de 2018

Comentada:

el 17 de Mzo. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by