Polar plot using excel data

조회 수: 17 (최근 30일)
jcc
jcc 2021년 9월 30일
댓글: Star Strider 2021년 9월 30일
Hi, I want to make a polar plot using data I have from excel. I'm measuring the intensity of a laser while using a polarizer. My one column is the degree of rotation from 0-360 in increments of 10s, and my second colum is the intensity measured at each angle. Thank you in advance

채택된 답변

Star Strider
Star Strider 2021년 9월 30일
The polar and polarplot functions require the angles to be in radians.
So using degrees requires the deg2rad function —
angles = linspace(0, 360, 50);
radius = sind(angles).^2;
figure
polarplot(deg2rad(angles), radius)
.
  댓글 수: 2
jcc
jcc 2021년 9월 30일
Thank you for your help, but if I could ask one more question as far as using the my excell dataset. Should I be using the xlsx function or xlsread function for matlab to be able to use my data? thanks again for your help!
Star Strider
Star Strider 2021년 9월 30일
My pleasure!
Since you are using R2021a (thank you for adding that), use the readtable or readmatrix function to read the .xlsx file. (Also, R2021b is available for download and installation.)
.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Polar Plots에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by