How to save plotted data in "Sensor Array Analyzer"

8 Ansichten (letzte 30 Tage)
Jon Kraft
Jon Kraft am 25 Apr. 2022
Beantwortet: Chandu am 28 Apr. 2022
In the Sensor Array Analyzer, I just want to save the x and y data of a directivity plot. For example:
How can I save this data, preferably to a csv type format? Thanks!
  • Jon

Antworten (1)

Chandu
Chandu am 28 Apr. 2022
Hi,
The plot in the Sensor Array Analyzer can be saved as an image (Use “Save As” Option). Besides this, the plot can be saved as MATLAB Fig (.fig ) file.
To save the X and Y coordinate data, extract the directivity data points using "patternAzimuth" MATLAB Function and create a vector as follows and save using "writematrix" function (Excel/CSV, etc)
directivity = patternAzimuth (Array, Frequency, cutAngle)
result= [AzimuthAngle, directivity]
writematrix (result, filename.csv)
Refer to patternAzimuth, writematrixMathWorks Documentation for future reference.

Produkte


Version

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by