![]() |
От: | sergii.p | |
Дата: | 19.11.24 10:22 | ||
Оценка: | +2 |
ekf::ekf(int x, int w) : NUMX(x),
...
{
...
this->HP = new float[this->NUMX];
this->Km = new float[this->NUMX];
...
}
ekf::~ekf()
{
...
delete this->HP;
delete this->Km;
}