필터 지우기
필터 지우기

How to save plotted data in "Sensor Array Analyzer"

조회 수: 6 (최근 30일)
Jon Kraft
Jon Kraft 2022년 4월 25일
답변: Chandu 2022년 4월 28일
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

답변 (1개)

Chandu
Chandu 2022년 4월 28일
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.

카테고리

Help CenterFile Exchange에서 Array Geometries and Analysis에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by