rbpfparticle.java

来自「一个基于PlaceLab的室内和室外的智能导航系统」· Java 代码 · 共 29 行

JAVA
29
字号
/* * Created on Jul 6, 2004 * */package org.placelab.particlefilter;/** *  * * */public interface RBPFParticle {			public double getStdev() ;		public void setStdev(double stdev) ;		// You'll get everything below here for free by extending off of Particle	public Particle createClone(); // can't make this return a RaoBlackwellisedParticle b/c of									// multiple interface implementation issues.		public double getWeight() ;		public void updateWeight(double weight) ;	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?