rflib.m
来自「用Matlab将Radio Frequency(RF)收发模块进行模型化。非常少」· M 代码 · 共 18 行
M
18 行
function rflib
% RFLIB Open the RF Circuits Toolbox SIMULINK Block Library.
% RFLIB opens the top level of the RF Circuits Toolbox
% SIMULINK Block Library. When SIMULINK is not installed in
% the MATLABPATH, this function displays an error mesasge
% at the MATLAB prompt.
%
if exist('simulink')
if exist('rf')
open_system('rf');
else
error('You have not loaded the RF Circuits SIMULINK Block Library yet.');
end;
else
error('You need SIMULINK to open the RF Circuits SIMULINK Block Library.');
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?