Matlab绘制极坐标

%%%%%%%%%%%%%%%%%%%%%%%%%%本脚本用于绘制方向图极坐标%%%%%%%%%%%%%%%%%%%%
%作者:
%编写时间:2022年03月
clc;clear;close all;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%各观测量原始数据提取%%%%%%%%%%%%%%%%%%%%%%%%%%%
 FileName=['MeasPatternValueFile','.txt'];
 FilePath='C:\Users\longrt\Desktop\';
 Direction_Data=importdata(fullfile(FilePath,FileName),' ');
 X1=Direction_Data(:,1);
 Y1=Direction_Data(:,2);
 X2=Direction_Data(:,3);
 Y2=Direction_Data(:,4);
 a = sqrt(X1.^2 + Y1.^2);
 b = sqrt(X2.^2 + Y2.^2);
 theta = linspace(0,2*pi);
 %绘制圆环
rho = sin(theta);
rho2= cos(theta);
polarplot(theta,rho,':r','LineWidth',1.5);
hold on;
polarplot(theta,-rho,':r','LineWidth',1.5);
hold on;
polarplot(theta,rho2,':b','LineWidth',1.5);
hold on;
polarplot(theta,-rho2,':b','LineWidth',1.5);
hold on;
 polarplot(a,'b','LineWidth',1.5);
 hold on;
 polarplot(b,'r','LineWidth',1.5);
 pax = gca;
 pax.ThetaDir = 'clockwise';	
 pax.ThetaZeroLocation = 'top';     % 将0度放在顶部  
 pax.FontSize = 14; %极坐标系字号大小
 rlim([0 1.6]);              % 设置半径范围
 rticks([0.5 1 1.5])		 % 在r=0.6、1.6、2处显示刻度
 pax.RColor = 'blue';        % 设置刻度的颜色
 pax.GridColor = 'b';        % 设置刻度线颜色   
 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值