How did I get this crazy Plot?
1 回表示 (過去 30 日間)
古いコメントを表示
clc
clear all
close all
A = 1.9;
R = 10;
a = 1;
X = linspace(0.0001,0.1,100);
% Y = a.*(1 + (A^(-R))*(X.^(R-1)));
for i = 1:length(X)
Y(i) = a*(1 + (A^(-R))*(X(i)^(R-1)));
end
plot(X, Y)
If you run the above code you will get a weird plot like this (shown below).
- How come those many ones in the Y-axis?
- Instead of a straight line, How come the plot it is a curve?
- Could anybody please explain??*
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/190491/image.jpeg)
3 件のコメント
Guillaume
2018 年 5 月 11 日
This is the plot I get (R2018a).
I see nothing unusual about it and I don't understand why you expect a straight line when you're effectively plotting y = c1*x.^9 + c2.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/188547/image.png)
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Graphics Performance についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!