代码搜索:Vector
找到约 10,000 项符合「Vector」的源代码
代码结果 10,000
www.eeworm.com/read/387887/8649505
m gain.m
function [g,w] = gain(num,den)
% Computes the gain function in dB of a
% transfer function at 256 equally spaced points
% on the top half of the unit circle
% Numerator coefficients are in vecto
www.eeworm.com/read/431767/8655430
m scm_mex_core.m
%SCM_MEX_CORE SCM_CORE written in ANSI-C
% This function calculates the channel coefficients for
% a geometric MIMO channel model. To compile the C-function
% in MATLAB, type
%
% m
www.eeworm.com/read/286841/8739845
h main.h
#ifndef _MAIN_H
#define _MAIN_H
#include
#include
#include
#include
#include
#include
#include // Header File
www.eeworm.com/read/386050/8767623
m findnlab.m
%FINDNLAB Determine indices of specified classes (numeric)
%
% J = FINDNLAB(A,NLAB)
%
% INPUT
% A Dataset
% NLAB vector with numerical indices of reqested classes
%
% OUTPUT
%
www.eeworm.com/read/384728/8849438
txt readme.txt
请注意:
本例的各个源描述的编译顺序应该是:
64_tlc.vhd
64_test_vector.vhd
www.eeworm.com/read/186987/8886175
m gain.m
function [g,w] = gain(num,den)
% Computes the gain function in dB of a
% transfer function at 256 equally spaced points
% on the top half of the unit circle
% Numerator coefficients are in vector nu
www.eeworm.com/read/284185/8956146
txt readme.txt
请注意:
本例的各个源描述的编译顺序应该是:
64_tlc.vhd
64_test_vector.vhd
www.eeworm.com/read/426690/9004011
m xorsum.m
function out = xorsum(in)
%xor sum of the vector in
%in is a vector with values 0 and 1
out = in(1);
for n=2:length(in)
out = xor(out, in(n));
end
www.eeworm.com/read/381752/9073853
cpp chapter11-23.cpp
//文件名:CHAPTER11-23.cpp
#include
#include
#include //For greater( )
#include
// Return whether modulus of elem1 is less than modulus of elem2