代码搜索:RLS
找到约 1,243 项符合「RLS」的源代码
代码结果 1,243
www.eeworm.com/read/378221/9240725
opt rls.opt
www.eeworm.com/read/177476/9451200
m rls.m
%基于RLS算法的自适应线性预测
clc;
clear all;
N=300;
M=100;%计算的次数
w1=zeros(N,M);w2=zeros(N,M);I=eye(2);e1=zeros(N,M);
for k=1:M
%产生白噪声
Pv=0.008;%定义白噪声方差
a1=-0.195;a2=0.95;o=0.02;r=0.95;
www.eeworm.com/read/176427/9499051
rls smsexample.rls
// LOCALISATION STRINGS FOR LANGUAGE 01 (English)
// Caption
rls_string qtn_app_caption_string "SmsExample"
rls_string qtn_app_short_caption_string "SmsExample"
rls_string r_icon_file "z:\\
www.eeworm.com/read/371694/9541435
rls aolabbubblesort.rls
// Copyright (c) 2006 Nokia Corporation.
// LOCALISATION STRINGS
// Caption string for app.
#define qtn_caption_string "AOLabBubbleSort"
// Command strings
#define qtn_command_startsorting
www.eeworm.com/read/371694/9541484
rls aolabbubblesort.rls
// Copyright (c) 2006 Nokia Corporation.
// LOCALISATION STRINGS
// Caption string for app.
#define qtn_caption_string "AOLabBubbleSort"
// Command strings
#define qtn_command_startsorting
www.eeworm.com/read/371694/9541654
rls aolabtextflash.rls
// Copyright (c) 2006 Nokia Corporation.
// LOCALISATION STRINGS
// Caption string for app.
#define qtn_caption_string "AOLabTextFlash"
// Command strings
#define qtn_command_startflashing
www.eeworm.com/read/371694/9541684
rls aolabtextflash.rls
// Copyright (c) 2006 Nokia Corporation.
// LOCALISATION STRINGS
// Caption string for app.
#define qtn_caption_string "AOLabTextFlash"
// Command strings
#define qtn_command_startflashing
www.eeworm.com/read/174543/9582665
rls mydllapp.rls
// rls
rls_string STRING_r_caption_mydllapp "MyDllApp"
rls_string STRING_r_short_caption_mydllapp "MyDllApp"
// commands
rls_string STRING_r_mydllapp_command_test_dll "TestDll"
www.eeworm.com/read/365463/9862831
rls testmyhttpclient.rls
/*
============================================================================
Name : testMyHttpClient.rls
Author :
Copyright : Your copyright notice
Description : This is a localisati
www.eeworm.com/read/167466/9968305
m rls.m
function [err_norm, err_sq] = rls(input, output, N, hopt)
% RLS adaptive filter for fig8_12.m
% input : input signal
% output : output signal
% N : no. of taps
% hopt : optimum set of weights
%