代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/255595/12069741
txt readme.txt
========================
System Requirements:
1) 1 MB of HD space available.
2) MATLAB version 5.3 (or higher) installed.
========================
Installation:
1) Create a new MATLAB to
www.eeworm.com/read/255595/12069837
m sn2sg.m
% MATLAB function sn2sg.m deals with mismatching
% effects at the Q terminals of a multi-port network.
% Function sn2sg.m needs as its inputs the
% normalizing impedance matrix Z0 (denoted Z0,
% d
www.eeworm.com/read/341613/12075787
m 7-17.m
%例程7-17 双极性归零码
%双极性归零码的MATLAB程序实现如下:
function y=drz(x) %x为二进制序列,y为编码输出
grid=100;
t=0:1/grid:length(x); %时间序列
for i=1:length(x)
www.eeworm.com/read/152494/12108989
dat bookinfo.dat
[General Information]
书名=MATLAB工具箱应用
作者=
页数=514
SS号=11193564
出版日期=
www.eeworm.com/read/152314/12122298
txt readme.txt
wgfcnkey.dll ---- A mex file, which captures pressing of fucntion keys
(F1, F2, ..., F12) in matlab applications on Windows
platforms. For the usage, use this function in the
www.eeworm.com/read/152247/12131180
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------
www.eeworm.com/read/152112/12139019
m milne.m
function M=milne(f,T,Y)
%Input - f is the function entered as a string 'f'
% - T is the vector of abscissas
% - Y is the vector of ordinates
%Remark. The first four coordinates of T
www.eeworm.com/read/152112/12139029
m ls.m
function L=ls(F1,F2,a,b,alpha,beta,M)
%Input - F1 and F2 are the systems of first-order equations
% representing the I.V.P.'s (9) and (10), respectively
% - a and b are the endpoin
www.eeworm.com/read/152112/12139051
m dirich.m
function U=dirich(f1,f2,f3,f4,a,b,h,tol,max1)
%Input - f1,f2,f3,f4 are boundary functions input as strings
% - a and b right endpoints of [0,a] and [0,b]
% - h step size
% - tol is the
www.eeworm.com/read/152112/12139080
m bisect.m
function [c,err,yc]=bisect(f,a,b,delta)
%Input - f is the function input as a string 'f'
% - a and b are the left and right endpoints
% - delta is the tolerance
%Output - c is the zero
%