How do you show the result when you multiply a 2x2 matrix by a 1x2 vector using the matrix unit?
program project1;
uses
Classes, matrix;
var
M:TMatrix2_double;
V1,V2:TVector2_double;
begin
writeln('---Matrices---');
//M:=TMatrix_double.create;
M.init(1,2,3,4);
V1.init(5,6);
V2:=M*V1;
//How do I show the answer?
writeln('----done------');
readln;
end.