findnyquistrate.m
来自「matlab的源程序」· M 代码 · 共 14 行
M
14 行
function [Te] = FindNyquistRate(Source)for (iSource=1:length(Source)) if (strcmp(Source(iSource).Modulation,'Lineaire')==1) Te(iSource) = Source(iSource).Debit/(1+Source(iSource).RollOff); elseif (strcmp(Source(iSource).Modulation,'CPM')==1) Te(iSource) = Source(iSource).Debit/2; endendTe = min(Te);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?