polynomial division issue, how to find the remainder
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
i have two polynomials like
a=X14 + X13 + X10 + X9
b=X8 + X7 + X6 + X4 + 1
i want to find a mod b using matlab pls.
3 Commenti
Risposta accettata
Roger Stafford
il 9 Dic 2013
If your field is that of the real numbers, look at 'deconv' function at:
http://www.mathworks.com/help/matlab/ref/deconv.html
This is a quote from that documentation: "If u and v are vectors of polynomial coefficients, convolving them is equivalent to multiplying the two polynomials, and deconvolution is polynomial division. The result of dividing v by u is quotient q and remainder r."
3 Commenti
Walter Roberson
il 9 Dic 2013
What datatype is c ? Do you mean c = [1 1 0 0 0 1 1 1 ...] or do you mean c = '1100011...' or do you mean c=110001111101010 decimal ?
Più risposte (2)
Walter Roberson
il 9 Dic 2013
Possibly x^6 + x^3 depending on what your formulae mean.
6 Commenti
Walter Roberson
il 9 Dic 2013
To convert c='110001111101010' to -1 for 1 and 1 for 0, use
2*('0' - c) + 1
M Naeem
il 10 Ago 2023
how we divide two polynomials in Polynomial Ring (Z_2[x]) to find the remainde?... let suppose i want to divide x^113 by x^8+x^4+x^3+x^2+1
0 Commenti
Vedere anche
Categorie
Scopri di più su Polynomials in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!