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.
二次関数の 3 次元グラフをプロットする方法。ここに 2D プロットのコードがありますが、それを 3D コードに適応させる方法はありますか?
z = (startv2:step:endv2); y = (a2.*(z.^2))+(b2.*z)+c2; plot(z,y); text(value1,0, ['X1 = ',num2str(value1),' ']); text(value2,0, ['X2 = ',num2str(value2)]); grid
次の MATLAB 関数が役立つ場合があります。
plot3
また
contour3
surf
何を見せたいかによる。MATLAB ヘルプ (上記の関数をクリック) には、それらすべての例があります。