Реферат: Построение кубического сплайна функции

y[i] = 0;

x[i] = 0; }

x1 = new double[n*dop+1];

y1 = new double[n*dop+1];

for ( i = 0 ; i < (n*dop+1);i++) {

x1[i] = 0;

y1[i] = 0; }

}

#endif

#ifndef __MAT_VEC_H

#define __MAT_VEC_H

#include <stdlib.h>

#include <iostream.h>

// класс матриц

class matrica {

public:

const int Column, String; //кол-во столбцов и строк матрицы

matrica(int column, int string);

~matrica();

private:

float **WW;

matrica(const matrica& rhs);

matrica& operator=(const matrica& rhs);

public:

float& operator()(int i, int j);

friend ostream& operator<<(ostream& out, const matrica& matr);

friend istream& operator>>(istream& in, const matrica& matr);

};

// конструктор

К-во Просмотров: 378
Бесплатно скачать Реферат: Построение кубического сплайна функции