代码搜索:Array Signal Processing
找到约 10,000 项符合「Array Signal Processing」的源代码
代码结果 10,000
www.eeworm.com/read/138178/13250990
a51 os_send_signal.a51
;------------------------------------------------------------------------------
; This file is part of the 'RTX-51 tiny' Real-Time Operating System Package
; Copyright KEIL ELEKTRONIK GmbH and Kei
www.eeworm.com/read/138178/13251011
a51 os_clear_signal.a51
;------------------------------------------------------------------------------
; This file is part of the RTX-51 TINY Real-Time Operating System Package
; Copyright KEIL ELEKTRONIK GmbH and Keil
www.eeworm.com/read/324406/13264169
m generate_signal_structure.m
function [signal_structure]=generate_signal_structure();
%创建表示所有信号的结构体
signal_structure=struct(...
'nr_of_bits',{},... %传输的比特数
'nr_of_symbols',{},... %传输的字符数
'bits_per_symbol',{},...
www.eeworm.com/read/324406/13264238
m calculate_signal_parameter.m
function calculate_signal_parameter
%计算额外的信号参数
global signal;%全局变量signal,在主函数中声明,是一个signal_structure类型的变量
%计算每个符号所包含的比特数
switch signal.modulation_type
case 'BPSK'
signal.bits_per
www.eeworm.com/read/324404/13264359
m generate_signal_structure.m
function [signal_structure] = generate_signal_structure();
% Creates the structure for all signal parameters
signal_structure = struct(...
'nr_of_bits',{},... % nr of bits to transfer
'nr_of_symbo
www.eeworm.com/read/324404/13264459
m calculate_signal_parameter.m
function calculate_signal_parameter(bit_sequence)
% Calculates some additional signal parameters
global signal;
% Bits per symbol
switch signal.modulation_type
case 'BPSK'
signal.bits_per_symbol
www.eeworm.com/read/320955/13415326
h0 signal1.h0
/* You may need to adjust the definition of signal1 to supply a */
/* cast to the correct argument type. This detail is system- and */
/* compiler-dependent. The #define below assumes signal.h decl
www.eeworm.com/read/318888/13467822
c signal_gen2.c
/*
signal_gen2 - generate two sinewaves of f1 and f2
*/
#include
#define DELTA 0x7fa0 /* Delat - excite signal */
#define UNIT 0x7fff
#define THIRD 0x2aaa