代码搜索:M

找到约 10,000 项符合「M」的源代码

代码结果 10,000
www.eeworm.com/read/238433/13887562

m for_for.m

for i=0:9 for j=1:50 I=imread(strcat('E:\MATLAB7\work\cars\',num2str(i),'-',num2str(j),'.bmp')); k=get_feature(I); %i=str2num(i); %j=str2num(j); if ((
www.eeworm.com/read/237242/13971176

m it.m

function delay=It(A1,B,alpha0,alpha1,alpha2,alpha3,beta0,beta1,beta2,beta3,gama0,gama1,gama2,gama3,t,fm) A2=a2(alpha0,alpha1,alpha2,alpha3,fm); A3=a3(gama0,gama1,gama2,gama3,fm); A4=a4(beta0,beta
www.eeworm.com/read/133779/14024419

m a.m

t=[0:0.05:5]; u=-0.5;w=10;x3=exp((u+j*w)*(t-5)); subplot(2,2,1),plot(t,real(x3),'r-'),grid on subplot(2,2,2),plot(t,imag(x3),'r-'),grid on
www.eeworm.com/read/205036/15328790

m or.m

function Z = or(X,Y) %OR Logical OR (|) for tensors. % % See also TENSOR. % %MATLAB Tensor Toolbox. %Copyright 2007, Sandia Corporation. % This is the MATLAB Tensor Toolbox by Brett Bader and Tama
www.eeworm.com/read/205036/15328826

m and.m

function Z = and(X,Y) %AND Logical AND (&) for tensors. % % See also TENSOR. % %MATLAB Tensor Toolbox. %Copyright 2007, Sandia Corporation. % This is the MATLAB Tensor Toolbox by Brett Bader and T
www.eeworm.com/read/205036/15328830

m not.m

function B = not(A) %NOT Logical NOT (~) for tensors. % % See also TENSOR. % %MATLAB Tensor Toolbox. %Copyright 2007, Sandia Corporation. % This is the MATLAB Tensor Toolbox by Brett Bader and Tam
www.eeworm.com/read/205036/15328864

m or.m

function C = or(A,B) %OR Logical OR (|) for sptensors. % % See also SPTENSOR. % %MATLAB Tensor Toolbox. %Copyright 2007, Sandia Corporation. % This is the MATLAB Tensor Toolbox by Brett Bader and
www.eeworm.com/read/205036/15328905

m and.m

function C = and(A,B) %AND Logical AND (&) for sptensors. % % See also SPTENSOR. % %MATLAB Tensor Toolbox. %Copyright 2007, Sandia Corporation. % This is the MATLAB Tensor Toolbox by Brett Bader a
www.eeworm.com/read/205036/15328909

m not.m

function y = not(x) %NOT Logical NOT (~) for sptensors. % % ~X performs a logical not on the input tensor X. The result always % returned as a sparse tensor. % % See also SPTENSOR. % %MATLAB Ten
www.eeworm.com/read/203890/15349760

m at.m

function [idx] = at(y,xs) % [idx] = at(y,xs) Return elements of y nearest to xs % AT is the inverse of the indexing paren operator. Ie, % % xs=y(idx) idx=at(y,xs) % % AT can for instance be used