How to convert linalg function MUPAD to matlab

조회 수: 1 (최근 30일)
Toan
Toan 2015년 1월 9일
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개)

카테고리

Help CenterFile Exchange에서 Functional Programming에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by