Can't plot function

5 ビュー (過去 30 日間)
Filip Cupan
Filip Cupan 2019 年 12 月 7 日
回答済み: 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)
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 約23時間 前
x = linspace(0,10);
y = sqrt(1+x.^2)./sqrt(x.^4-x.^2+1);
plot(x,y);

カテゴリ

Help Center および File Exchange2-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