Localized titre to title
This commit is contained in:
parent
b919f4a249
commit
e4026b8d60
@ -141,8 +141,8 @@ Matrix Matrix::Substract(const Matrix* other){
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Print a matrix in terminal, with a title
|
// Print a matrix in terminal, with a title
|
||||||
void Matrix::Print(std::string_view titre){
|
void Matrix::Print(std::string_view title){
|
||||||
std::cout << titre << std::endl;
|
std::cout << title << std::endl;
|
||||||
for(int m = 0; m < values.size(); m++){
|
for(int m = 0; m < values.size(); m++){
|
||||||
std::cout << '|';
|
std::cout << '|';
|
||||||
for(int n = 0; n < values[m].size(); n++){
|
for(int n = 0; n < values[m].size(); n++){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user