I am having problems figuring out how to run simple matrix operations in a program. I am trying to write a encoder using an encoding matrix and can't figure out how to ask the computer to handle the matrices. Please help!
Printable View
I am having problems figuring out how to run simple matrix operations in a program. I am trying to write a encoder using an encoding matrix and can't figure out how to ask the computer to handle the matrices. Please help!
int matrix[10][10];
What else?
I have to be able to find the inverse of a matrix and also multiply matrices together. It is a long and complicated process if you do it by hand and I want a computer program which will do it. The idea will be applied to cyrptography and communications.
Use your normal formulas. Where exactly are you having problems? What have you tried?
Also, beware, unless your matrices are of a special type, finding dterminants is a positively hideous problem for large enough matrices.
Where is your work? Post what you have done and describe the specific problems you are having with it.