[問題] 如何繪製2D參數區域

看板Mathematica作者 (Go! GTI)時間9年前 (2015/11/11 02:38), 編輯推噓1(101)
留言2則, 1人參與, 最新討論串1/1
大家好: 我目前只知道若要畫一個2D區域 {(f(s,t), g(s,t)) : 0<s<1, 0<t<1} 可以用 ParametricPlot[{f(s,t), g(s,t)}, {s, 0, 1}, {t, 0, 1}] 當我要畫一個如下需要3個參數的2D區域該怎麼處理呢? {(f(r,s,t), g(r,s,t)) : 0<r<1, 0<s<1, 0<t<1, 0<s+t<1} 謝謝! -- ※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 140.112.218.11 ※ 文章網址: https://www.ptt.cc/bbs/Mathematica/M.1447180709.A.A35.html

12/03 13:16, , 1F
RegionPlot[ParametricRegion[{{s^2 + t^2 + r^2, s+t-r},
12/03 13:16, 1F

12/03 13:19, , 2F
0<=s<=1 && 0<=t<=1 && 0<=r<=1 && 0<=s+t<=1},{s,r,t}]]
12/03 13:19, 2F
文章代碼(AID): #1MGZcber (Mathematica)
文章代碼(AID): #1MGZcber (Mathematica)