Mathc gnuplot/Fichiers h : xspv
Apparence
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);
}
/* ------------------------------------ */
/* ------------------------------------ */