代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/164549/5489103
m recdir.m
function M = recdir(recvar)
% RECVAR, A package for new data types in Matlab 4.
% (c) FOA 1997. See the file rvright.m for copyright notice.
%
% function M = recdir(recvar)
%
% Returns a Matlab matr
www.eeworm.com/read/155397/5622470
java matlabmessagelistener.java
// $Id: MatlabMessageListener.java,v 1.1.14.1 2003/08/18 22:09:43 cssharp Exp $
/* MatlabMessageListener.java
*
* "Copyright (c) 2001 and The Regents of the University
* of California. All right
www.eeworm.com/read/476071/6773299
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/476076/6773368
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.4.
echo on ;
a=[-10,-5,-4,-2,0,1,3,5,10];
for i=1:length(a)-1
y(i)=centroid('normal',a(i),a(i+1),0.001,0,1);
echo off ;
end
www.eeworm.com/read/475765/6778082
m clmodal.m
function [M,Dlam]=clmodal(A)
% CALL: [M,Dlam]=clmodal(A) computes a modal matrix M and
% the matrix Dlam=(M^-1)*A*M
[M Dlam]=eig(A); % M is Modal matrix
% Dlam is diag
www.eeworm.com/read/475502/6790127
m printgui.m
function printgui(figname)
% PRINTGUI Screen Capture Print utility for ADSP TOOLBOX GUIS.
% PRINTGUI (with no arguments) prints to a printer.
% PRINTGUI(fileame) Prints to an eps file called filena
www.eeworm.com/read/475201/6793905
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/475201/6793924
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/474586/6813154
svn-base std.sci.svn-base
function y = std(x,a)
// std - for matlab compatibility
if argn(2)==1
y = stdev(x);
else
y = stdev(x,a);
end
endfunction