Application of the identity matrix II. v05
Submitted By:
xhunga
Rating:





(
Rate It)
/* xprowi.h freeware [[Email Removed]] */
/* --------------------------------- FUNCTION ------------------------------ */
/* Do : */
/* */
/* Call : */
/* Debug : */
/* -------------------------------------------------------------------------- */
void printrowI(
pmatrix m,
int rown)
{
int j;
printf("\n");
for ( j = 0 ; j < m->cols ; j++ ,j++)
{
printf(" %6.0f",*(m->pblock+rown *m->cols+j));
}
printf("\n");
}