I want to find d from 7*d mod 40=1 But error .help me please.
3 ビュー (過去 30 日間)
古いコメントを表示
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))
0 件のコメント
採用された回答
Azzi Abdelmalek
2015 年 6 月 21 日
編集済み: Azzi Abdelmalek
2015 年 6 月 21 日
syms d
Eqn=7*mod(d,40)-1;
Sold=solve(Eqn,d)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Special Values についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!