フィルターのクリア

I want to find d from 7*d mod 40=1 But error .help me please.

11 ビュー (過去 30 日間)
Sakunrat Jaejaima
Sakunrat Jaejaima 2015 年 6 月 21 日
コメント済み: Sakunrat Jaejaima 2015 年 6 月 22 日
I tried the codes but thereis no error shown. Matlab instead asked for/tried to open some matlab files
syms d Eqn=='7*d==1'; Sold=solve(eqn,d,Domain=Dom::IntegerMod(40))

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 6 月 21 日
編集済み: Azzi Abdelmalek 2015 年 6 月 21 日
syms d
Eqn=7*mod(d,40)-1;
Sold=solve(Eqn,d)
  2 件のコメント
Sakunrat Jaejaima
Sakunrat Jaejaima 2015 年 6 月 21 日
7*d mod 40==1 ans 23 Why you do = 1/7
Sakunrat Jaejaima
Sakunrat Jaejaima 2015 年 6 月 22 日
I want to solve the equation in mod.what to do

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

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by