Borrar filtros
Borrar filtros

How to draw the graph of a function that has different structure in its different domain

3 visualizaciones (últimos 30 días)
Dear all suppose i want to find the graph of a function such that f(x)=4+x/(2+x^2) when x>0 and f(x)=4-x/(2-x^2) for x<=0 .How i can draw the two different forms of a function in different domain in a single graph with x-axis [-1,1].

Respuesta aceptada

Star Strider
Star Strider el 13 de Dic. de 2015
Using logical indexing operations, this works:
f = @(x) (4+x./(2+x.^2)).*(x>0) + (4-x./(2-x.^2)).*(x<0); % Function
x = linspace(-1, 1, 250); % Define ‘x’
figure(1)
plot(x, f(x)) % Plot
grid

Más respuestas (0)

Categorías

Más información sobre Directed Graphs en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by