How to convert linalg function MUPAD to matlab

1 visualización (últimos 30 días)
Toan
Toan el 9 de En. de 2015
I am using a function in mupad to find the solution of linear equation. However, it more inconvenient. I want to make a matlab function to call this function. This is my mupad code
MatZ2 := Dom::Matrix(Dom::IntegerMod(2)):
A := MatZ2([[1, 0, 1], [0, 1, 0], [1, 1, 1]]);
b := MatZ2([1, 0, 1]);
linalg::wiedemann(A, b, _mult);
My expected matlab function such as
function x=wiedemann(A,b)
%%Call Mupad function
end

Respuestas (0)

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by