📄 angfp.m
字号:
% Maximum RCS of Flat Plate as Function
% of Angle from Perpendicular
% -------------------------------------
clear;clc;clf;
% Input Plate Width
wx=[.0375 .075 .15]; % Plate Width - m
% Input Angle
phi=0:.1:90;
phir=phi*pi/180+1e-12;
% Find Maximum RCS with Angle
for i=1:3;
w=wx(i);
Rcs=w.^2./(pi*(tan(phir)).^2);
Rcsx(:,i)=Rcs';
end;
% Plot RCS vs Angle
semilogy(phi,Rcsx);grid;
axis([0 90 1e-4 1e4]);
xlabel('Angle - deg');
ylabel('RCS - m^2');
title('Maximum RCS of Flat Plate');
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -