|
記号的に偏微分方程式を解きます
|
|
|
説明
|
|
pdsolve を使用して記号的に偏微分方程式を解きます。
|
偏微分方程式を指定します。
>
|
__eq__ := diff (__u__(__x__,__t__), __t__) - __k__ * diff(__u__(__x__,__t__), __x__, __x__) = 0;
|
| (1.1) |
pdsolve を使用して方程式を解きます。
>
|
__sol1__ := pdsolve (__eq__, __u__(__x__,__t__));
|
| (1.2) |
可能であるなら、2つのパラメータに関して明示的な式を見つけます。
>
|
__sol2__ := PDETools[build](__sol1__);
|
| (1.3) |
|
|
Download Help Document
Was this information helpful?