代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/391253/8414041
m lspdecod.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/391253/8414073
m unpack.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/391253/8414080
m ham.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/391253/8414091
m biterror.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/391253/8414115
m sinc.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/391253/8414116
m guitext.m
% MATLAB SIMULATION OF NSA FS-1016 CELP v3.2
% COPYRIGHT (C) 1995-99 ANDREAS SPANIAS AND TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the FS-1016 CELP
www.eeworm.com/read/391151/8418710
c sin1500matl.c
//Sin1500MATL.c Generates sine from table created with MATLAB
#include "sin1500.h" //sin(1500) created with MATLAB
short i=0;
interrupt void c_int11()
{
output_sample(sin1500[i]); //o
www.eeworm.com/read/291193/8436780
m area_svm_10.m
%%%%%%%%%%%%%%%%%用BP神经网络建模%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clc
clear
close all
tic
%%%%%%%%%%%%%%%训练数据集%%%%%%%%%%%%%%%%%%%%%%
%使用点数折算120幅图片的面积,分别作为训练数据和检验数据
%%%%%%%%%%%%输入%%%%%%%%%%%
www.eeworm.com/read/291193/8436783
m area_svm_11.m
%%%%%%%%%%%%%%%%%用BP神经网络建模%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clc
clear
close all
tic
%%%%%%%%%%%%%%%训练数据集%%%%%%%%%%%%%%%%%%%%%%
%使用点数折算120幅图片的面积,分别作为训练数据和检验数据
%%%%%%%%%%%%输入%%%%%%%%%%%
www.eeworm.com/read/390194/8477630
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')
>>