Mathc initiation/Fichiers c : c45c1b
Apparence
Installer et compiler ces fichiers dans votre répertoire de travail.
c181b.c |
---|
/* ---------------------------------- */
/* save as c181b.c */
/* ---------------------------------- */
#include "x_hfile.h"
#include "fb.h"
/* ---------------------------------- */
int main(void)
{
clrscrn();
printf(" Evaluate the line integral\n\n");
printf(" (\n"
" int( f(x,y) ds = \n"
" (C\n\n\n"
" is C has the parametrization : \n\n"
" x = g(t); y = h(t); a < t =< b \n\n\n"
" ( (b\n"
" int( f(x,y) ds = int( f(g(t),h(t)) sqrt([g(t)'**2 + h(t)'**2]) dt \n"
" (C (a\n\n\n");
stop();
clrscrn();
printf(" Evaluate :\n\n");
printf(" (\n");
printf(" int( (%s) ds = \n", feq);
printf(" (C\n\n\n");
printf(" is C has the parametrization :\n\n\n");
printf(" x = %s; y = %s; %.1f < t =< %.1f \n\n\n", geq, heq, a, b);
printf(" (b\n"
" int( f(g(t),h(t)) sqrt([g(t)'**2 + h(t)'**2]) dt = %+.3f\n"
" (a\n\n\n",
lint2d_ds( f,
g,h,
a,b,LOOP)
);
stop();
return 0;
}
/* ---------------------------------- */
/* ---------------------------------- */
Évaluer l'intégrale curviligne en ds.
Exemple de sortie écran :
Evaluate the line integral
(
int( f(x,y) ds =
(C
is C has the parametrization :
x = g(t); y = h(t); a < t =< b
( (b
int( f(x,y) ds = int( f(g(t),h(t)) sqrt([g(t)'**2 + h(t)'**2]) dt
(C (a
Press return to continue.
Exemple de sortie écran :
Evaluate :
(
int( (x**3 + y) ds =
(C
is C has the parametrization :
x = 3*t; y = t**3; 0.0 < t =< 1.0
(b
int( f(g(t),h(t)) sqrt([g(t)'**2 + h(t)'**2]) dt = +25.598
(a
Press return to continue.