|
平面の線分に沿う線積分
|
|
|
説明
|
|
点 (1,2) と (3,4) 繋ぐ線分に沿う F . dr の線積分 (line integral) を求めます。
|
座標を指定します。
>
|
VectorCalculus[SetCoordinates] ( 'cartesian'[__x__,__y__] );
|
| (1.1) |
ベクトル場を指定します。
>
|
__F__ := VectorCalculus[VectorField] (<__x__^2, __y__^2>);
|
| (1.2) |
ベクトル場の線積分を求めます。
>
|
__LI__ := VectorCalculus[LineInt]( __F__, Line( <1,2>,<3,4> ), inert );
__LI__ := VectorCalculus[LineInt]( __F__, Line( <1,2>,<3,4> ) );
|
| (1.3) |
|
|
Download Help Document
Was this information helpful?