I want to find d from 7*d mod 40=1 But error .help me please.
조회 수: 11 (최근 30일)
이전 댓글 표시
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!