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

// вывод матрицы в поток

ostream& operator<<(ostream& out, matrica& WW) {

for(int i = 1; i <= WW.String; i++) {

for(int j = 1; j <= WW.Column; j++)

out << WW(i, j) << " ";

out << endl;

}

return out << "";

}

// ввод матрицы из потока

istream& operator>>(istream& in, matrica& WW) {

for(int i = 1; i <= WW.String; i++)

for(int j = 1; j <= WW.Column; j++)

in >> WW(i, j);

return in;

}

// класс векторов

class vector {

public:

vector(int column);

~vector();

const int Column; // кол-во элементов вектора

private:

float *vect;

vector(const vector& rhs);

vector& operator=(const vector& rhs);

public:

float& operator()(int i);

friend ostream& operator<<(ostream& out, const vector& vec);

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