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
|
||||
void Matrix::Print(std::string_view titre){
|
||||
std::cout << titre << std::endl;
|
||||
void Matrix::Print(std::string_view title){
|
||||
std::cout << title << std::endl;
|
||||
for(int m = 0; m < values.size(); m++){
|
||||
std::cout << '|';
|
||||
for(int n = 0; n < values[m].size(); n++){
|
||||
|
Loading…
x
Reference in New Issue
Block a user