sum += op[state][i];
}
throw new IllegalArgumentException("Observation probabilities of state " + taxo.getState(state) + " do not form a stochastic vector, they add up to "
+ sum);
}
this.setOpdf(state, new OpdfInteger(op[state]));
}
double opLast[] = new double[nOb];
Arrays.fill(opLast, 0.0);
opLast[nOb - 1] = 1.0;
this.setOpdf(nSt - 1, new OpdfInteger(opLast));
}