📄 rbpfparticle.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -