代码搜索:TLS
找到约 2,313 项符合「TLS」的源代码
代码结果 2,313
www.eeworm.com/read/349111/10848976
m tls.m
function [r,p,M,dh] = tls(d,m)
% TLS - Total Least Squares approximation.
%
% [r,p,M,dh] = tls(d,m)
%
% D = [d1 ... dN] - data matrix
% m - complexity specification, m < size(D,1)
% R - parameter of
www.eeworm.com/read/274436/10871745
m tls.m
clear
clc
legth=128;
n=1:legth;
%%%%%%计算x(n)-e(n)
x=sqrt(20)*sin(2*pi*0.2.*n)+sqrt(2)*sin(2*pi*0.215.*n);
%%%%计算e(n)这里用w表示
w=randn([1,legth]);
x=x+w;
%%%%计算自相关矩阵Rx(k)
M=40;p=7;
r=zeros(M+1,
www.eeworm.com/read/417108/11003654
c tls.c
/*
* Trivial ls for comparing two directories after running an rsync.
*
* Copyright (C) 2001, 2002 Martin Pool
* Copyright (C) 2003-2008 Wayne Davison
*
* This program is free so
www.eeworm.com/read/270946/11018949
m tls.m
function [x,flag] = tls(A,b)
%TLS Total-Least Squares solution to a set of linear equations
% [x,flag] = tls (A, b)
% Obtains the TLS solution to A x = b
% Must have: # rows (A) >= # cols (A) + #
www.eeworm.com/read/131205/6955866
mak tls.mak
# Microsoft Developer Studio Generated NMAKE File, Format Version 4.20
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
!IF "$(CFG)" == ""
CFG=TLS - Win32 Debug
!MESSAG
www.eeworm.com/read/131205/6955867
cpp tls.cpp
#include
#include
#include
#include "CMcl.h"
#define NUM_THREADS 10
#define THREAD_LIFETIME 1000
// index for dynamically allocated TLS...
DWORD g_
www.eeworm.com/read/131205/6955868
exe tls.exe
www.eeworm.com/read/131205/6955869
exe tls.exe
www.eeworm.com/read/461762/7220768
m tls.m
close all;
clear all;
clc;
cycle_total = 1;%蒙德卡诺次数
p_norm_sque = 10e3:20e3:110e3;
for p_norm = p_norm_sque
p = p_norm.*[0,1].';%目标起始位置
x_ob_s = [5e1,0].';%观测飞机的速度
T = 0.0
www.eeworm.com/read/448535/7531415