メインコンテンツ

ccdf

CCDF 曲線の座標の取得

R2022a 以降

    説明

    [relpower,prob] = ccdf(meter) は、CCDF 曲線の座標を返します。

    すべて折りたたむ

    生成された電圧信号の平均電力の測定値を計算します。

    x = complex(rand(15000,1)-0.2,rand(15000,1)-0.2);
    pm = powermeter(ComputeCCDF=true);
    averagePower = pm(x);                            % power in dB

    CCDF 曲線の計算された座標をプロットします。

    [relpower,prob] = ccdf(pm);
    semilogy(relpower,prob)
    xlabel('Relative Power (dB)');
    ylabel('Probability (%)');
    ylim([0 125]);
    grid on;
    title('CCDF Measurement');

    Figure contains an axes object. The axes object with title CCDF Measurement, xlabel Relative Power (dB), ylabel Probability (%) contains an object of type line.

    入力引数

    すべて折りたたむ

    電力メーター。powermeter System object™ として指定します。

    出力引数

    すべて折りたたむ

    相対電力 (dB 単位)。NM 列の行列として返されます。M は提供された信号の列数に等しくなり、N は ceil(PowerRange/PowerResolution) + 1 に等しくなります。

    データ型: double

    確率 (%)。行列として返されます。j 番目のチャネルの瞬時信号電力が平均信号電力より dB 単位で relpower(i,j) だけ上回る確率は prob(i)/100 です。

    データ型: double

    バージョン履歴

    R2022a で導入

    参考

    オブジェクト

    関数