この方程式をMatlabまたはRで描画したい(Matlabが望ましい):
f = p+(1-p)*(T-S)
ここで0 < S < 1
、0 < p < 1
およびT
は定数です。S
関数を描画し、とに基づいて最小値、最大値を見つけたいと思いますp
。私の基本的な問題は、グラフのスパンをシンボルとして定義することです。S が 0 から T に変化するためです。
この方程式をMatlabまたはRで描画したい(Matlabが望ましい):
f = p+(1-p)*(T-S)
ここで0 < S < 1
、0 < p < 1
およびT
は定数です。S
関数を描画し、とに基づいて最小値、最大値を見つけたいと思いますp
。私の基本的な問題は、グラフのスパンをシンボルとして定義することです。S が 0 から T に変化するためです。
Use ezsurf
to plot. For example:
f = 'p + (1 - p) * (5 - S)'
ezsurf(f, [0 5 0 1])
Then use regular calculus to find critical values, double differentiate to find their type, and so on...
This is all explained in the online documentation (diff
, solve
, etc.). Also, this external example covers all of the points you want very nicely: http://msemac.redwoods.edu/~darnold/math50c/matlab/maxmin/index.xhtml