?? clot.m
字號:
function clot(x)% function clot(x)% This file is part of the TFPM toolbox v0.9 (c)% michael.jachan@tuwien.ac.at and underlies the GPL.% % Plots the cplx-valued signal x in real/imag and mag/arg. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%if(0)% TEST TEST TEST TEST TEST TEST TEST TEST TEST TEST%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%N= 64;x= randn(N, 1)+j*randn(N, 1);%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%end;% TEST TEST TEST TEST TEST TEST TEST TEST TEST TEST%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%clf;subplot(4, 1, 1);plot( real(x))subplot(4, 1, 2);plot( imag(x))subplot(4, 1, 3);plot( abs(x))subplot(4, 1, 4);plot(angle(x))
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -