How to convert linalg function MUPAD to matlab

2 views (last 30 days)
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

Answers (0)

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!