I want to find d from 7*d mod 40=1 But error .help me please.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sakunrat Jaejaima
el 21 de Jun. de 2015
Comentada: Sakunrat Jaejaima
el 22 de Jun. de 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 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 21 de Jun. de 2015
Editada: Azzi Abdelmalek
el 21 de Jun. de 2015
syms d
Eqn=7*mod(d,40)-1;
Sold=solve(Eqn,d)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Special Values en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!