代码搜索:Mathworks
找到约 4,523 项符合「Mathworks」的源代码
代码结果 4,523
www.eeworm.com/read/273093/10927525
m unshsca.m
function[xx] = unshsca(x,l,u,DS);
%UNSHSCA Unshift and unscale
%
% xx = UNSHSCA(x,l,u,DS); vector x is shifted and scaled to yield xx.
% Copyright (c) 1990-98 by The MathWorks, Inc.
% $Rev
www.eeworm.com/read/418151/10964288
m ds_hann.m
function w = ds_hann(n)
% function w = ds_hann(n)
% A Hann window of length n. Does not smear tones located exactly in a bin.
% Note: This function was formerly just "hann." Re-naming
% was necessary
www.eeworm.com/read/465911/7048803
m qu_free.m
function qu=qu_free(qu)
% QU_FREE
%
% qu=QU_FREE(qu) frees the memory allocated to the queue
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
qu=sl_free(qu);
www.eeworm.com/read/465911/7048831
m rb_free.m
function rb=rb_free(rb)
% RB_FREE
%
% rb=RB_FREE(rb) frees the memory allocated to the red-black binary tree rb.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
bt_free(rb);
www.eeworm.com/read/465911/7048835
m qu_front.m
function y=qu_front(qu)
% ST_FRONT
%
% y=QU_FRONT(qu) returns the first element of the queue, without popping it.
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
y=sl_get(qu);
www.eeworm.com/read/465911/7048841
m st_free.m
function st=st_free(st)
% ST_FREE
%
% st=ST_FREE(st) frees the memory allocated to the stack
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
st=sl_free(st);
www.eeworm.com/read/465911/7048855
m dl_free.m
function dl=dl_free(dl)
% DL_FREE
%
% dl=DL_FREE(dl) frees the memory allocated to the doubly linked
% list dl.
%
% Copyright (c) MathWorks Inc. 1998-2001. All rights reserved.
dl=sl_free
www.eeworm.com/read/172061/7074797
m unshsca.m
function[xx] = unshsca(x,l,u,DS);
%UNSHSCA Unshift and unscale
%
% xx = UNSHSCA(x,l,u,DS); vector x is shifted and scaled to yield xx.
% Copyright (c) 1990-98 by The MathWorks, Inc.
% $Rev
www.eeworm.com/read/199224/7876989
m phase.m
function PHI=phase(G)
%PHASE Computes the phase of a complex vector
%
% PHI=phase(G)
%
% G is a complex-valued row vector and PHI is returned as its
% phase (in radians), with an effort made to
www.eeworm.com/read/197958/7960685
m unshsca.m
function[xx] = unshsca(x,l,u,DS);
%UNSHSCA Unshift and unscale
%
% xx = UNSHSCA(x,l,u,DS); vector x is shifted and scaled to yield xx.
% Copyright (c) 1990-98 by The MathWorks, Inc.
% $Rev