PLOT log scale in y cordinate
1 回表示 (過去 30 日間)
古いコメントを表示
i have this equation and i want ger the relation between Xss and W
-3751474221736597/(2621440*(17179869184*W^2 - 336973579165665))
my code is
syms W
W=0:200:2000;
figure
semilogy(W,Xss)
but this error is appear
Error using semilogy
A numeric or double convertible argument is expected
0 件のコメント
回答 (1 件)
Star Strider
2019 年 4 月 27 日
Try this (using the fplot function):
syms W
Xss = -3751474221736597/(2621440*(17179869184*W^2 - 336973579165665));
figure
fplot(Xss, [0 2000])
set(gca, 'YScale','log')
2 件のコメント
Star Strider
2019 年 4 月 27 日
It ran for me as posted without error.
Post your code so I can see what the problem is.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!