-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.h
62 lines (53 loc) · 1.46 KB
/
matrix.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#ifndef MATRIX_H
#define MATRIX_H
#include <iostream>
#include "array.h"
class CMatrix
{
public:
//Konstruktor tworzący nową macierz
//h - wysokość, w - szerokość, v - wartość na przekątnej, f - wartość pozostałych pól macierzy
CMatrix(int w, int h, double v = 0.0f, double f = 0.0f);
//Konstruktor kopiujący macierz
CMatrix(const CMatrix& m);
//Konstruktor tworzący macierz z wczytanego pliku
CMatrix(std::fstream &f);
//Pusty konstruktor
CMatrix();
~CMatrix();
class Cref;
/*Metody*/
void check (int i, int j);
int getRows() const;
int getColumns() const;
double read(int col, int row) const;
void write(int col, int row, double val);
/*operatory*/
//Przypisanie macierzy jako klasy
CMatrix operator=(CMatrix mat);
//Zapisanie wartości do macierzy
//CMatrix operator=(double num);
//Operator przypisujący do wyjścia
friend std::ostream& operator<<(std::ostream &os, CMatrix &matrix);
//Mnożenie klasy macierzy
CMatrix operator*(CMatrix mat);
//Wybór elementu
double* operator[](int i);
//Cref operator[](int i);
private:
CArray* array;
};
/*
class CMatrix::Cref
{
friend class CMatrix;
CMatrix& mat;
int m_col, m_row;
public:
Cref(CMatrix& matrix, int col);
operator double();
Cref& operator=(int num);
Cref& operator=(Cref& ref);
};
*/
#endif // MATRIX_H