Indexing for .NET objects in MATLAB
Afficher commentaires plus anciens
I'm programming a camera whose vendor has provided me with the .NET libraries for accessing the methods. I added the third party assemblies, instantiated the objects as given in the help notes. I'm able to access the properties/methods as advertised.
I ran into the following error when trying to access one of the methods. I was able to get the value returned but not set it
pmSetupObj.ExposureTime(1)
ans =
100
pmSetupObj.ExposureTime(1) = 200 Array formation and indexing are not allowed on .NET objects.
Any pointers to fix this issue, I used NET.createArray to little effect as well.
thanks -R
Réponses (1)
Dale
le 20 Fév 2013
0 votes
To set the the exposure time using the ExposureTime method you need to include the desired exposure time as an argument to the method. For example pmSetupObj.ExposureTime(1,200) will set the exposure time to 200ms.
Catégories
En savoir plus sur Get Started with Microsoft .NET dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!