代码搜索:MATlab
找到约 10,000 项符合「MATlab」的源代码
代码结果 10,000
www.eeworm.com/read/172473/9706273
m rctrap.m
function T=rctrap(f,a,b,n)
%Input - f is the integrand input as a string 'f'
% - a and b are upper and lower limits of integration
% - n is the number of times for recursion
%Output - T
www.eeworm.com/read/172122/9723808
m gda_iris.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Example of the GDA using the Fisher's iris data %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% This file provides information for us
www.eeworm.com/read/171413/9757126
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------
www.eeworm.com/read/366977/9786611
m p0312.m
I=imread('blood1.tif');
imshow(I);
f=double(I); % 数据类型转换,MATLAB不支持图像的无符号整型的计算
g=fft2(f); % 傅立叶变换
g=fftshift(g); % 转换数据矩阵
[M,N]=size(g);
nn=2; % 二阶巴特沃斯(Butterworth)高通滤波器
www.eeworm.com/read/415086/11084412
m colsum.m
% Sum of the columns of a. Matlab's 'sum' does the wrong thing when a has only one row
function a = colsum(a)
if size(a, 1) > 1
a = sum(a);
end
www.eeworm.com/read/269450/11097616
c simpleeng.c
/*necessory header file*/
#include "engine.h"
#include "stdio.h"
#include "conio.h"
#define BUFFERLEN 256
/*main function*/
void main()
{
Engine *ep;
char cmd[BUFFERLEN];
int i=0
www.eeworm.com/read/414751/11103862
hlp tools.hlp
-----------------------------------------------------------------
FDC 1.2 contains some analytical tools for the evaluation of
aircraft stability and control, which have been implemented in
Matlab
www.eeworm.com/read/414455/11111339
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
clear
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/414455/11111423
m ip_04_04.m
% MATLAB script for Illustrative Problem 4.4.
clear
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