How to convert linalg function MUPAD to matlab
1 view (last 30 days)
Show older comments
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
0 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!