Can't plot function

22 次查看(过去 30 天)
Filip Cupan
Filip Cupan 2019-12-7
>> 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.

采纳的回答

Stephan
Stephan 2019-12-7
x = linspace(0,10);
y = sqrt(1+x.^2)./sqrt(x.^4-x.^2+1);
plot(x,y)

更多回答(1 个)

CHANDRA BABU GUTTIKONDA
CHANDRA BABU GUTTIKONDA 2025-12-5,10:47
x = linspace(0,10);
y = sqrt(1+x.^2)./sqrt(x.^4-x.^2+1);
plot(x,y);

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by