I have some problem with plotting, the listing is like this:
for d=1:1:100;
p=10^(-10);
a(d)=100*(10^6)*d/(2*(10^8)*12208);
u_gb(d)=(1-p)/(1+2*a(d)*p);
x(d)=d;
end
plot(x,u_gb);
those u_gb has very small data, its between 0.999999999899181 to 0.999999999899992. if I plot it, we will see straight horizontal line in the graph. Because of that, we can't see that u_gb 's value has changed
How to make this line more tilted or oblique, so that we can see that the data of u_gb is changed

 採用された回答

G A
G A 2012 年 2 月 21 日

0 投票

try plot(x,1-u_gb,'.k');

1 件のコメント

sam arf
sam arf 2012 年 2 月 22 日
thanks

サインインしてコメントする。

その他の回答 (2 件)

Ali Can
Ali Can 2012 年 2 月 21 日

0 投票

It may help to make the data points visible in the graph.
plot(x,u_gb,'.-')
Kevin Holst
Kevin Holst 2012 年 2 月 21 日

0 投票

Have you tried just adjusting the y-axis scale?
doc axis

1 件のコメント

sam arf
sam arf 2012 年 2 月 22 日
yes, but still, it did't change the graph

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

タグ

質問済み:

2012 年 2 月 21 日

編集済み:

2013 年 10 月 19 日

Community Treasure Hunt

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

Start Hunting!

Translated by