HI Everybody,
I have got a polynomial S= [ 1 2 3 4 ];
I want to write this in a matrix form so it goes,
S= [ 1 0 0 0 ]
[ 2 1 0 0 ]
[ 3 2 1 0 ]
[ 4 3 2 1 ]
Any ideas of hwo this can be done in USING C PROG LANG???
I have got a polynomial S= [ 1 2 3 4 ];
I want to write this in a matrix form so it goes,
S= [ 1 0 0 0 ]
[ 2 1 0 0 ]
[ 3 2 1 0 ]
[ 4 3 2 1 ]
Any ideas of hwo this can be done in USING C PROG LANG???
Comment