代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/173659/9644860
m myditfft.m
function y=myditfft(x)
%《数字信号处理教程——MATLAB释义与实现》
% 用MATLAB语言编写的基2 DIT FFT子程序
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
% y=myditfft(x)
% ------------------------------------------------------------
% 本程序对输入序
www.eeworm.com/read/173659/9644966
m fgp832.m
%《数字信号处理教程——MATLAB释义与实现》第八章图8.3.2生成程序fgp832
% s平面到z平面的指数变换映射
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
a=[-2:0.1:0]; % 设定实部分度
b=[-3:0.2:3]; % 设定虚部分度
[X,Y]=meshgrid(a,b); %
www.eeworm.com/read/173140/9670768
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/173140/9670813
m ip_04_04.m
% MATLAB script for Illustrative Problem 4, Chapter 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/368517/9691234
cs program.cs
using System;
using System.Collections.Generic;
using System.Text;
// MathWorks assemblies that ship with Builder for .NET
// and should be registered in Global Assembly Cache
using MathWorks.M
www.eeworm.com/read/368250/9703753
readme
-----------------------------------------
--- MATLAB/OCTAVE interface of LIBSVM ---
-----------------------------------------
Table of Contents
=================
- Introduction
- Installation
- Usag
www.eeworm.com/read/172473/9706181
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/172473/9706189
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/172473/9706213
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/172473/9706241
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
%