3

この方程式をMatlabまたはRで描画したい(Matlabが望ましい):

f = p+(1-p)*(T-S)

ここで0 < S < 10 < p < 1およびTは定数です。S関数を描画し、とに基づいて最小値、最大値を見つけたいと思いますp。私の基本的な問題は、グラフのスパンをシンボルとして定義することです。S が 0 から T に変化するためです。

4

1 に答える 1

1

Use ezsurf to plot. For example:

f = 'p + (1 - p) * (5 - S)'
ezsurf(f, [0 5 0 1])

enter image description here

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

于 2012-02-06T22:50:48.100 に答える