I want to find d from 7*d mod 40=1 But error .help me please.
3 views (last 30 days)
Show older comments
Sakunrat Jaejaima
on 21 Jun 2015
Commented: Sakunrat Jaejaima
on 22 Jun 2015
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 Comments
Accepted Answer
Azzi Abdelmalek
on 21 Jun 2015
Edited: Azzi Abdelmalek
on 21 Jun 2015
syms d
Eqn=7*mod(d,40)-1;
Sold=solve(Eqn,d)
More Answers (0)
See Also
Categories
Find more on Special Values in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!