代码搜索:MatLab

找到约 10,000 项符合「MatLab」的源代码

代码结果 10,000
www.eeworm.com/read/456359/7351135

txt matlab实用程序实例.txt

1-32是:图形应用篇 例1:三角函数曲线(1) function shili01 h0=figure('toolbar','none',... 'position',[198 56 350 300],... 'name','实例01'); h1=axes('parent',h0,... 'visible','off'); x=-pi:0.05:pi;
www.eeworm.com/read/455828/7363942

txt k-means_matlab算法.txt

function [cid,nr,centers] = cskmeans(x,k,nc)   % CSKMEANS K-Means clustering - general method.   %   % This implements the more general k-means algorithm, where   % HMEANS is used to find the in
www.eeworm.com/read/454127/7397826

txt 自适应matlab2.txt

【讨论】自适应滤波的MATLAB实现 1.LMS算法的仿真程序: %lms 算法 clear all close all hold off%系统信道权数 sysorder = 5 ;%抽头数 N=1000;%总采样次数 inp = randn(N,1);%产生高斯随机系列 n = randn(N,1); [b,a] = butter(2,0.25); Gz = tf(b,a,