代码搜索:predict
找到约 2,271 项符合「predict」的源代码
代码结果 2,271
www.eeworm.com/read/189642/8464144
m predict.m
function predict (v,g,Q,WB,dt)
global XX PX
XX = [XX; v; g];
PX = blkdiag(PX, Q);
[XX,PX] = unscented_transform(@vehiclemod, @vehiclediff, XX, PX, WB,dt);
%
function x = vehiclemod(x, WB
www.eeworm.com/read/189641/8464216
m predict.m
function particle= predict(particle, V,G,Q, WB,dt, addrandom)
%
% INPUTS:
% xv - vehicle pose sample
% Pv - vehicle pose predict covariance
%
% Note: Pv must be zeroed after each observation
www.eeworm.com/read/189641/8464225
m predict.m
function particle= predict(particle, V,G,Q, WB,dt, addrandom)
%
% add random noise to controls
if addrandom == 1
VG= multivariate_gauss([V;G], Q, 1);
V= VG(1); G= VG(2);
end
% predi
www.eeworm.com/read/188503/8535818
cc predict.cc
/* predict.cc, motion compensated prediction */
/* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
/*
* Disclaimer of Warranty
*
* Thes
www.eeworm.com/read/289178/8570200
exe predict.exe
www.eeworm.com/read/289178/8570243
c predict.c
#include
#include
#include
#include
#include "linear.h"
char* line;
int max_line_len = 1024;
struct feature_node *x;
int max_nr_attr = 64;
struct model* mod
www.eeworm.com/read/289178/8570285
c predict.c
#include
#include
#include
#include "linear.h"
#include "mex.h"
#include "linear_model_matlab.h"
#if MX_API_VER < 0x07030000
typedef int mwIndex;
#endif
#define CMD_
www.eeworm.com/read/187893/8594032
h predict.h
/* predict.h: h264 encoder library */
#ifndef _PREDICT_H
#define _PREDICT_H 1
typedef void (*x264_predict_t)( uint8_t *src, int i_stride );
enum intra_chroma_pred_e
{
I_PRED_CHROMA_DC
www.eeworm.com/read/187893/8594103
c predict.c
/* predict.c: h264 encoder */
/* XXX predict4x4 are inspired from ffmpeg h264 decoder
*/
#include
#include
#include "stdint.h"
#include "predict.h"
#define X264_C
www.eeworm.com/read/187882/8594430
m predict.m
clear
tf='AnnData.txt';
fid=fopen(tf);
n=7;
m=3000;
geshi='';
for i=1:n
geshi=[geshi '%f '];
end
ALLData=fscanf(fid,geshi,[n,m]);
[mx,my]=size(ALLData);
%%%%%%%%%%%%%%控制预测点的数目%%%%%%%%%%