Do we have a general method for getting the number of basis coef? #674
-
Do we have a consistent method for querying our I have one or two places in the code where I would like to check user supplied arguments are not larger than the number of basis coefficients (or some more complicated relationship). I'm realizing now this ( Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
To clarify, I see |
Beta Was this translation helpful? Give feedback.
-
There's no current way of doing this without instantiating a class. Having a class method perform this might be tricky without duplicating a lot of code. I guess the question is, why not instantiate a class an using |
Beta Was this translation helpful? Give feedback.
There's no current way of doing this without instantiating a class. Having a class method perform this might be tricky without duplicating a lot of code. I guess the question is, why not instantiate a class an using
count
? Speed?