フィルターのクリア

I find d from 7*d mod 40=1

5 ビュー (過去 30 日間)
Sakunrat Jaejaima
Sakunrat Jaejaima 2015 年 6 月 17 日
コメント済み: Sakunrat Jaejaima 2015 年 6 月 18 日
I find d from 7*d mod 40 =1
syms d
eqn= 7*d==1;
solve(eqn,d,Domain=Dom::IntegerMod(40))
But there error. Help me please.
  3 件のコメント
Walter Roberson
Walter Roberson 2015 年 6 月 18 日
What is the error message?
Sakunrat Jaejaima
Sakunrat Jaejaima 2015 年 6 月 18 日
I tried the codes but thereis no error shown. Matlab instead asked for/tried to open some matlab files

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 6 月 18 日
Try
feval(symengine, 'solve', eqn, d, sym('Domain=Dom::IntegerMod(40)'))
Domains are MuPAD objects, and you need to call into MuPAD to use them.
  1 件のコメント
Sakunrat Jaejaima
Sakunrat Jaejaima 2015 年 6 月 18 日
Thank you so mush .

サインインしてコメントする。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by