代码搜索:M
找到约 10,000 项符合「M」的源代码
代码结果 10,000
www.eeworm.com/read/480745/6661229
m conv_m.m
function [y,ny]=conv_m(x,nx,h,nh)
%Modified convolution routine for signal processing
%ny=support of y;
nyb=nx(1)+nh(1);
nye=nx(length(x))+nh(length(h));
ny=[nyb:nye];
y=conv(x,h);
www.eeworm.com/read/480430/6664006
m m_conv.m
%m_conv is an extension to MATLAB's conv, where more
%arguments are allowed, which means that under such
%the convolution of more than two vectors can be
%obtained at the same time.
%Copyright
www.eeworm.com/read/480430/6664043
m m_conv.m
function a=m_conv(varargin)
a=varargin{1};
for i=2:length(varargin)
eval(['a=conv(a,varargin{' int2str(i) '});']);
end
www.eeworm.com/read/480430/6664260
m m_conv.m
function a=m_conv(varargin)
a=varargin{1};
for i=2:length(varargin)
eval(['a=conv(a,varargin{' int2str(i) '});']);
end
www.eeworm.com/read/480027/6675089
m m_idist.m
function [s,a12,a21] = m_idist(lon1,lat1,lon2,lat2,spheroid)
% M_IDIST - On an ellipsoidal earth, compute the distance between
% two points within a few millimeters of accuracy, compute forw
www.eeworm.com/read/480027/6675090
m m_contourf.m
function [cs,h]=m_contourf(long,lat,data,varargin);
% M_CONTOURF Adds filled contours to a map
% M_CONTOURF(LONG,LAT,DATA,...) is the same as M_CONTOUR except
% that contours are filled. Areas
www.eeworm.com/read/480027/6675091
m m_track.m
function m_track(lon,lat,varargin);
% M_TRACK Draw a trackline on a map
%
% M_TRACK draws navigation tracklines on a map. The trackline
% itself is optionally annontated with tick marks, time labels,
www.eeworm.com/read/480027/6675092
m m_geodesic.m
function [s,lon,lat] = m_geodesic(lon1,lat1,lon2,lat2,Npoints,varargin)
% M_GEODESIC - Compute points along geodesics of an ellipsoidal earth.
%
% [S,LON,LAT] = m_geodesic(lon1,lat1,lon2,lat2,Np
www.eeworm.com/read/480027/6675093
m m_text.m
function h=m_text(long,lat,varargin);
% M_TEXT Text Annotation
% M_TEXT(LONG,LAT,'string') adds the text in the quotes to location
% (LONG,LAT) on the currently defined map projection. If LONG
www.eeworm.com/read/480027/6675094
m m_lldist.m
function [dist,lons,lats] = m_lldist(long,lat,N)
% M_LLDIST Spherical earth distance between points in long/lat coordinates.
% RANGE=M_LLDIST(LONG,LAT) gives the distance in kilometers between
%