フィルターのクリア

Plotting 1/x correctly

45 ビュー (過去 30 日間)
Lasse Sivertsen
Lasse Sivertsen 2015 年 5 月 26 日
回答済み: Titus Edelhofer 2015 年 5 月 26 日
I'm trying to plot a simple function, 1/x. However it does not seem to work as intended. I define a linspace for my variable x and then use the plot() function.
As seen in the picture, for X=3, Y= 4.95. How is this possible? For X=3, Y should be equal to 0.33?
Is there something I'm missing causing the function to break the laws of mathematics? Changing the linspace size, or simply step size results in large differences as well.

採用された回答

Thorsten
Thorsten 2015 年 5 月 26 日
編集済み: Thorsten 2015 年 5 月 26 日
Because you have not specified the x values in your plot, they run from 1 to the numel(s). So X is not an absolute value but the index into your x, defined as
x = linspace(0, 10, 100);
Then
x(3) = 0.2020
so y = 1/x = 4.95.
To get the right values, use
plot(x, 1./x)

その他の回答 (2 件)

Jos (10584)
Jos (10584) 2015 年 5 月 26 日
Your plotting values against their index. And indeed, since x(3) is not equal to 3, but 0.2020, y(3) is not 1/3. You can use plot(x,1/.x)
Try this:
x = linspace(0,10,100) ;
y = 1./x ;
plot(x, y)
idx = 3, x(idx), y(idx)

Titus Edelhofer
Titus Edelhofer 2015 年 5 月 26 日
Adding to Thorsten's answer: you need to put x on the x axis while plotting:
plot(x, 1./x);
Titus

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by