代码搜索:Matlab仿真
找到约 10,000 项符合「Matlab仿真」的源代码
代码结果 10,000
www.eeworm.com/read/450596/7480661
readme
-----------------------------------------
--- MATLAB/OCTAVE interface of LIBSVM ---
-----------------------------------------
Table of Contents
=================
- Introduction
- Installation
- Usag
www.eeworm.com/read/449771/7496728
m speedup3.m
function Speedup3
% Speedup3.m
% 功能:比较具有相同功能的自定义函数与MATLAB内部函数的运行速度
%
% 加快MATLAB执行程序的方法之三:尽量使用MATLAB内部函数(包括各种工具箱函数)
%
% Author: HUANG Huajiang
% Copyright 2003 UNILAB Research Center,
%
www.eeworm.com/read/448905/7522804
m basics.m
% Appendix F: MATLAB Basics, Section F.2, p. 818-823.
%
% The MATLAB input/output described in Section F.2, including
% Figures F.1 - F.11 are shown here. After each subtopic, a
% pause is
www.eeworm.com/read/448535/7531269
listoffigures
List of figures, captions, and files.
NOTES:
1) ALL figure files go in the 'pictures' subdirectory
2) files ending in .fig were created using xfig using the transdev package
------------------
www.eeworm.com/read/447020/7560201
m mexcdf.m
function [varargout] = mexcdf(varargin)
% mexcdf -- Driver for Matlab-5/NetCDF C-Language interface.
% mexcdf('action', ...) performs the specified NetCDF action.
% When writing or reading a N
www.eeworm.com/read/447020/7560203
m ncmemory.m
function theResult = ncmemory(theNetCDF)
% ncmemory -- Estimate Matlab memory for NetCDF file.
% ncmemory(theNetCDF) estimates the amount of Matlab
% memory that would be required to load all
www.eeworm.com/read/447020/7560269
m ncextract.m
function theResult = ncextract(theNCObject, theOutputName)
% ncextract -- GUI for NetCDF data extraction.
% ncextract(theNCObject, 'theOutputName') presents a dialog
% for guiding the extracti
www.eeworm.com/read/447020/7560345
m ncsetstr.m
function theResult = ncsetstr(x)
% ncsetstr -- SETSTR for NetCDF character data.
% ncsetstr(x) converts values x to unsigned-characters
% in the range 0:255, for use by Matlab. Beginning
%
www.eeworm.com/read/445830/7589531
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