?? ds_demod.m
字號:
%*************************************************************************************
% This function does the DS-SS modulation
%
% AUTHOR: Wenbin Luo
% DATE : 04/28/01
%
% SYNOPSIS: x = ds_demod(c,y)
% c ---> user code (column vector)
% y ---> tmp = c*x, y = tmp(:) (ds-ss modulated signal, column vector)
% x ---> input signal (row vector)
%***********************************************************************************
function x = ds_demod(c,y)
tmp = reshape(y, length(c), length(y)/length(c));
tmp = tmp';
%x is a column vector
x = tmp * c;
% convert to row vector
x = x';
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -