代码搜索:Sign
找到约 10,000 项符合「Sign」的源代码
代码结果 10,000
www.eeworm.com/read/351176/10676046
m user_alg7.m
function W = user_alg7( X );
% ICALAB user can replace this function by own algotrithm computing demixing matrix W
%
% This is only dummy function
%
% input:
% x - signals vector, each sign
www.eeworm.com/read/351176/10676066
m user_alg8.m
function W = user_alg8( X );
% ICALAB user can replace this function by own algotrithm computing demixing matrix W
%
% This is only dummy function
%
% input:
% x - signals vector, each sign
www.eeworm.com/read/351176/10676109
m user_alg9.m
function W = user_alg9( X );
% ICALAB user can replace this function by own algotrithm computing demixing matrix W
%
% This is only dummy function
%
% input:
% x - signals vector, each sign
www.eeworm.com/read/351176/10676490
m user_alg2.m
function W = user_alg2( x );
% ICALAB user can replace this function by own algotrithm computing demixing matrix W
%
% This is only dummy function
%
% input:
% x - signals vector, each sign
www.eeworm.com/read/275202/10829469
m uminus.m
function C = uminus(m)
%uminus(m): change the sign of a multivector.
%
%See also gable.
% GABLE, Copyright (c) 1999, University of Amsterdam
% Copying, use and development for non-commercial purposes
www.eeworm.com/read/165343/7144034
c gcd.c
int gcd(int a, int b)
/* A simple example of the Euclidean algorithm: */
/* Compute g = (a,b), where a>0 and b>0 */
/* (A better function would include sign checking) */
/* Copyright 2004 by Todd K.