Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
さて、私はフォロー機能を持っています
y=sin(x)^2 + [(10+2x+x^2) / (5+2x^2)]
y = -2 から y = 2 までの間隔でプロットする必要があるので、どのように設定すればよいでしょうか?
私はこれをmatlabで行いました
>> y = sin(x).^2 + (10 + 2*x + x.^2)/(5+2*x.^2) >> x = -2:0.01:2;
それは正しい設定ですか?それとも私は何か間違ったことをしましたか
変数は、使用する前に宣言する必要があります。この場合、x は y に依存しないので、最初に宣言します。また、./オペレーターが行方不明です。
./
x = -2:0.01:2; y=sin(x).^2 + (10+2*x+x.^2) ./ (5+2*x.^2); plot(x,y)