How to convert linalg function MUPAD to matlab

1 vue (au cours des 30 derniers jours)
Toan
Toan le 9 Jan 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

Réponses (0)

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by