필터 지우기
필터 지우기

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))

채택된 답변

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