代码搜索:MATLAB

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

代码结果 10,000
www.eeworm.com/read/460538/7247705

readme

----------------------------------------- --- MATLAB/OCTAVE interface of LIBSVM --- ----------------------------------------- Table of Contents ================= - Introduction - Installation - Usag
www.eeworm.com/read/460519/7248354

readme

v3d - Readme =================== A set of MatLab Scripts to vizualize 3D Data. Copyright (C) 2001-2002 Robert Barsch This program is free software; you
www.eeworm.com/read/460435/7250423

m reorderdset.m

function a = reorderdset(a,L) % This is just needed to execute the below command outside the @dataset % directory, as it fails there in some Matlab versions a(L,:) = a; return
www.eeworm.com/read/459986/7259673

htm ofdm simulator.htm

OFDM Simulator
www.eeworm.com/read/459907/7263201

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/459044/7283917

c ch2example16sfun_mex.c

/* * MATLAB Compiler: 3.0 * Date: Wed Jun 27 13:19:37 2007 * Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on" * "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/458133/7303805

htm ofdm simulator.htm

OFDM Simulator
www.eeworm.com/read/457711/7318947

m ag906.m

%《线性代数实验践及MATLAB入门》第九章例题程序ag906 % 不同坐标系的二次型曲线 % 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月 % clear, subplot(2,2,1) ezplot('5*x1^2-4*x1*x2+5*x2^2=48') axis equal,grid on subplot(2,2,3) ezplot('3*y1^2+7*y2^
www.eeworm.com/read/457711/7318952

m ag801.m

%《线性代数实验践及MATLAB入门》第八章例题程序ag801 % 平面上向量的绘制 % 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月 % u=[2;4]; v=[3;-1]; plot([2,3],[4,-1],'x');hold on drawvec(u);hold on % drawvec是ATLAST中的子程序 drawvec(v,'g');hold off
www.eeworm.com/read/457711/7319089

m ea401.m

% 《工程线性代数(MATLAB版)》第四章例题4.1程序ea401 % 陈怀琛,高淑萍,杨威合编,电子工业出版社,2007年6月 % 平面向量的绘制 % u=[2;4]; v=[3;-1]; plot([2,3],[4,-1],'x');hold on drawvec(u);hold on % drawvec是ATLAST中的子程序 drawvec(v,'g');hold on