代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/311916/13622572
txt readme.txt
RSA Encryption and Decryption using Matlab
by Thunyawat Rajatasereekul and Voranon Kiettrsalpipop
ECE575, Winter 2002, Oregon State University
Prof, Cetin Keya Koc
The program set contains thirt
www.eeworm.com/read/309380/13673161
txt 新建 文本文档.txt
采用特征脸的人脸识别MATLAB程序,加了中文注释-Eigenface using MATLAB Face Recognition procedures, add the Chinese Notes
www.eeworm.com/read/308949/13686767
dat bookinfo.dat
[General Information]
书名=MATLAB通信仿真及应用实例详解
作者=
页数=415
SS号=0
出版日期=
www.eeworm.com/read/308726/13694586
c sjbh1_mex.c
/*
* MATLAB Compiler: 3.0
* Date: Fri Sep 03 08:56:52 2004
* Arguments: "-B" "macro_default" "-O" "all" "-O" "fold_scalar_mxarrays:on"
* "-O" "fold_non_scalar_mxarrays:on" "-O" "optimize_integ
www.eeworm.com/read/308082/13708870
dat bookinfo.dat
[General Information]
书名=MATLAB通信仿真及应用实例详解
作者=
页数=415
SS号=0
出版日期=
www.eeworm.com/read/306478/13744600
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/306478/13744648
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
www.eeworm.com/read/305390/13772285
m crnich.m
function U=crnich(f,c1,c2,a,b,c,n,m)
%Input - f=u(x,0)
% - c1=u(0,t) and c2=u(a,t)
% - a and b right endpoints of [0,a] and [0,b]
% - c the constant in the heat eq
www.eeworm.com/read/304881/13784515
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/304826/13785984
txt 08-06.txt
%例8-6 给MATLAB 7的图形添加标题。
>> x = 0:.1:2;
>>y1=sin(x);
>>y2 = sin(x-0.25);
>>y3 = sin(x-0.5);
>> plot(x,y1,'-.b', x,y2,'--r*', x,y3,'-.gh')
>> title('There three lines')
>>