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





(
Rate It)
/* gjid03.c freeware [[Email Removed]]
*/
/* --------------------------------- INCLUDES ------------------------------- */
#include "xa_hfile.h"
/* --------------------------------- MAIN ----------------------------------- */
main()
{
double pb[4][5*TWOCOL]=
{
11,1, 14,1, -16,1, 19,1, 11,1,
12,1, 13,1, 13,1, 11,1, -14,1,
0,1, 0,1, 17,1, 11,1, 12,1,
12,1, 18,1, 1,1, -16,1, 14,1,
};
matrix m={4,5*TWOCOL,&pb[0][0]};
/*-------------------------------- PROGRAM ---------------------------------- */
gjidF2(&m);
printf("\n Press return to continue");
getchar();
return 0;
}