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:0.01:1; Y = 0:0.01:1; [x,y] = meshgrid(X,Y); z = sin(x.*y); contourf(x,y,z,'ShowText','on')
輪郭の値は自動的に決定されます。[0.1,0.3,0.44,0.63,0.78,0.89] のような特定の値で特定の等高線をプロットするにはどうすればよいですか?
希望する値が
v = [0.1,0.3,0.44,0.63,0.78,0.89]
それから私たちは持っています
X = 0:0.01:1; Y = 0:0.01:1; [x,y] = meshgrid(X,Y); z = sin(x.*y); contourf(x,y,z,[0.1,0.3,0.44,0.63,0.78,0.89],'ShowText','on')
ベクトル 'v' の場所は 'z' の直後でなければなりません。