nolonline

48 Reputation

2 Badges

15 years, 202 days

MaplePrimes Activity


These are questions asked by nolonline

Hello:)

Im trying now to make a program that does the same thing as BackwardSubstitutes in maple
I tried 2 things


I tried combining the matrix and the vector in the procedure but its not working

substitutioninverse := proc (matrice, vecteur)
local n, m, j, i, resultat, V, matrice2, a;
matrice2 := [matrice, vecteur];
m, n := Dimension(matrice2);
 V := Vector(m);
for i to m do
 resultat := 0;
for j from n to 1 do

Hello,
Im trying to make a program that does the same thing as RowOperation in maple but i dont know what to write to make it return the new matrix matrix
thats what i tried



rowoperation := proc (matrice, i, j, r)
 local m, n, k;
 m, n := Dimension(matrice);

<p>Hello,</p>
Page 1 of 1