Using msiwrite with phased antenna objects
23 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Collin
el 29 de En. de 2025
Comentada: Walter Roberson
el 30 de En. de 2025
I'm able to plot the radiation pattern from a phased antenna array object; how do I write this to a file using the msiwrite function?
msiwrite seems to accept inputs from other antenna types (e.g. helix), but all the data should be available within the phased.ShortDipoleAntennaElement object to be able to be used by the msiwrite function. What am I missing?
fc = 500e6;
antenna = phased.ShortDipoleAntennaElement(...
'FrequencyRange',[50e6,1000e6],...
'AxisDirection','Z');
array = phased.UCA('NumElements',11,'Radius',1.5,'Element',antenna);
msiwrite(antenna,fc,'UCA_File');
0 comentarios
Respuesta aceptada
Walter Roberson
el 30 de En. de 2025
msiwrite() is defined in the Antenna toolbox.
phased.ShortDipoleAntennaElement is defined in the Phased Array System Toolbox.
The two are simply not compatible.
2 comentarios
Walter Roberson
el 30 de En. de 2025
I do not see anything relevant. At the moment I do not see any write routines for the PAS at all.
Más respuestas (0)
Ver también
Categorías
Más información sobre Antennas, Microphones, and Sonar Transducers en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!