Least Mean Square Newton Algorithm

源代码在线查看: dstm.m

软件大小: 27 K
上传用户: borisliuyuan
关键词: Algorithm Square Newton Least
下载地址: 免注册下载 普通下载 VIP

相关代码

				function T=dstm(n)
				%This function produces a matrix of dimension n by n
				%and with elements of the DST of type I.
				%
				%Format:   T=dstm(n)
				%
				T=zeros(n);
				for m=1:n
					for k=1:n
						T(m,k)=sqrt(2/(n+1))*sin(m*k*pi/(n+1));
					end
				end
							

相关资源