i have excel sheet with 1 column as phase angles, can anyone help me how do i plot those angles on polar plot?
조회 수: 3 (최근 30일)
이전 댓글 표시
채택된 답변
KSSV
2016년 11월 18일
편집: KSSV
2016년 11월 18일
Let theta be your angles in radians read from excel file.
rho = 4*ones(size(theta)) ;
figure
polar(theta,rho,'-o')
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Polar Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!