Indexing for .NET objects in MATLAB
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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
0 comentarios
Respuestas (1)
Dale
el 20 de Feb. de 2013
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.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!