how to use a variable in finite field
1 view (last 30 days)
Show older comments
sym a;
I want y=gf(3,8)*a, but it did not work.
4 Comments
Answers (2)
John D'Errico
on 6 Apr 2024
Edited: John D'Errico
on 6 Apr 2024
g = gf(3, 8)
whos g
g is a gf object. But g is not compatible for multiplication by a symbolic parameter. These are two independent (and unfortunately, incompatible) toolboxes. They don't talk to or with each other. This is why when you do try to multiply g with a symbolic object, it fails.
syms a
g*a
As the error message says, the only things you can multiply a gf object by are in that list of numeric classes. A sym is not one of the allowed classes for that operation.
You could possibly write your own set of tools that would work as you wish, essentially rewriting the gf class. Since a sym can take on any value, and it MUST be discrete for that operation to make any sense at all, it might take some work on your part to do so in a valid way.
0 Comments
See Also
Categories
Find more on Error Detection and Correction 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!