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.
次の関数をプロットする方法は? の x 範囲が必要です[0; 1]。
[0; 1]
syms y(x) y(x) = dsolve(diff(y,x) == tan(x), y(0) == 1); plot(y, [0 1]);
表示されるエラー メッセージは次のとおりです。
プロットの使用エラー 非数値データは 'Line' ではサポートされていません
これは、問題が何であるかを正確に示しています。ここでは数値データyではありません。むしろ、それは記号関数です。必要なポイントで評価してからプロットする必要があります。y
y
固定コード:
syms y(x) y(x) = dsolve(diff(y,x) == tan(x), y(0) == 1); x=0:0.01:1; plot(x,y(x));
出力: