Can't plot function
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Filip Cupan
el 7 de Dic. de 2019
Respondida: CHANDRA BABU GUTTIKONDA
el 5 de Dic. de 2025 a las 10:47
>> x = linspace(0,10);
>> y = sqrt(1+x.^2)/sqrt(x.^4-x.^2+1);
>> plot(x,y)
I am new to Mathlab. When I try to plot this function y, it gives me empty figure without graph.
0 comentarios
Respuesta aceptada
Stephan
el 7 de Dic. de 2019
x = linspace(0,10);
y = sqrt(1+x.^2)./sqrt(x.^4-x.^2+1);
plot(x,y)
0 comentarios
Más respuestas (1)
CHANDRA BABU GUTTIKONDA
el 5 de Dic. de 2025 a las 10:47
x = linspace(0,10);
y = sqrt(1+x.^2)./sqrt(x.^4-x.^2+1);
plot(x,y);

0 comentarios
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!