Find allowable values in matlab data acquisition toolbox
Show older comments
I am trying to set up an NI9237 module. I would like to obtain (through matlab) the allowable values for (internal) excitation voltage, nominal bridge resistance, bridge mode etc. I would also like a generic approach to this so that I can plug any type of hardware module in and it spits out the allowable values for any user-changeable setting.
I know they are in there somewhere because if I try to specify a value that is not allowed, the error message lists the allowable values.
Is this possible?
Thanks
3 Comments
Walter Roberson
on 10 Mar 2025
If you would normally
set(OBJECT, PARAMETER, VALUE)
then try
possible_values = set(OBJECT, PARAMETER)
and likely the result will be a description of the permitted values.
CM
on 26 Mar 2025
Walter Roberson
on 26 Mar 2025
I am not at all sure, but I suspect that is a reflection of the fact that ExcitationVoltage is only set in some modes.
Answers (0)
Categories
Find more on National Instruments Frame Grabbers in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!