?? channel.m
字號:
% Channel
% By Maxime Maury
% 05-04-21
clear all;
close all;
disp('Start channel');
load('TXOutput');
load('tx_param');
Xout=[Channel1;Channel2];
N=length(Channel1);
Xout = (Xout / (1.2*max(max(Xout)))) * 32766;
subplot(221),plot(Xout(1,:))
title('Channel 1 (left)');
subplot(222),plot(Xout(2,:))
title('Channel 2 (right)');
[Xin,no_samples_delivered,buffer_size]=DSK6713_rxtx(N,2,2,Xout,Fs);
ChannelA=Xin(1,:);
ChannelB=Xin(2,:);
subplot(223),plot(ChannelA)
title('Channel A (left)');
subplot(224),plot(ChannelB)
title('Channel B (right)');
drawnow
save('ChannelOutput','ChannelA','ChannelB');
disp('End');
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -