Aller au contenu

Mathc gnuplot/Fichiers h : xspv

Un livre de Wikilivres.


Installer ce fichier dans votre répertoire de travail.

vmatrot.h
/* ------------------------------------ */
/*      Save as : vmatrot.h             */
/* ------------------------------------ */
double **rot2D_mR(
double  **A,
double alpha
)
{
 A[1][1]=cos(alpha);A[1][2]=-sin(alpha);
 A[2][1]=sin(alpha);A[2][2]= cos(alpha);

return(A);
}
/* ------------------------------------ */
/* ------------------------------------ */