代码搜索:PROGRAMMED
找到约 3,252 项符合「PROGRAMMED」的源代码
代码结果 3,252
www.eeworm.com/read/197565/7986021
m cp0804_signalshift.m
%
% Function 8.14: "cp0804_signalshift"
%
% Applies a circular shift of 't' seconds
% to the input vector 'in'
%
% Programmed by Guerino Giancola
%
function [out] = cp0804_signalshift(in,fc,
www.eeworm.com/read/197565/7986042
m cp0201_th.m
%
% FUNCTION 2.3 : "cp0201_TH"
%
% Generates a pseudorandom TH code
% with periodicity 'Np' and cardinality 'Nh'
%
% Programmed by Guerino Giancola
%
function [THcode]=cp0201_TH(Nh,Np);
%
www.eeworm.com/read/197565/7986046
m cp0201_bits.m
%
% FUNCTION 2.1 : "cp0201_bits"
%
% Generates a stream of equiprobable binary values ('bits')
% The number of bits ('numbits') is an input parameter
%
% Programmed by Guerino Giancola
%
fun
www.eeworm.com/read/196950/8039086
m mvalue.m
% Program 2-1
%
% calculate average
%
% Programmed by H.Harada
%
function outdata = mvalue(indata)
%****************** variables *************************
% indata : Input data
%*
www.eeworm.com/read/196950/8039100
m main.m
% Program 2-3
% main.m
%
% calculate mean, dispersion and standard deviation for the vector data
%
% Programmed by H.Harada
%
data=rand(1,20);
mvalue2=mvalue(data);
[sigma2, sigma]= disper(
www.eeworm.com/read/295883/8135442
m mvalue.m
% Program 2-1
%
% calculate average
%
% Programmed by H.Harada
%
function outdata = mvalue(indata)
%****************** variables *************************
% indata : Input data
%*
www.eeworm.com/read/295808/8138776
m main.m
% Program 2-3
% main.m
%
% calculate mean, dispersion and standard deviation for the vector data
%
% Programmed by H.Harada
%
data=rand(1,20);%产生均匀分布的随机数
mvalue2=mvalue(data); %sum(data)/len
www.eeworm.com/read/331910/12801878
c proto.c
/*
* File: proto.c
*
* Copyright (C) 2003 Jorge Arellano Cid ,
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Pu
www.eeworm.com/read/329499/12951853
m autocorr.m
% Program 5-1
% autocorr.m
%
% Autocorrelation function of a sequence
%
% Programmed by M.Okita and H.Harada
%
function [out] = autocorr(indata, tn)
% *************************************
www.eeworm.com/read/240990/13180493
m cp0202_ds.m
%
% FUNCTION 2.7 : "cp0202_DS"
%
% Generates a random DS code
% with periodicity 'Np'
%
% Programmed by Guerino Giancola
%
function [DScode]=cp0202_DS(Np);
% -----------------------------