Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Гальцов Денис, РИ- 232 702; Лабораторные работы с 1 по 3 ( С НОВЫМ ГОДОМ!!!!!!!!!!! (/ ̄ー ̄)/~~☆’.・.・:★’.・.・:☆HO-HO-HO) #47

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
1d29a3e
matrix.cpp
Lampa-lab Dec 29, 2024
b868f5e
matrix.cpp
Lampa-lab Dec 29, 2024
e9eed93
matrix.cpp
Lampa-lab Dec 29, 2024
2e53305
matrix.hpp
Lampa-lab Dec 29, 2024
3ce77ec
matrix.hpp
Lampa-lab Dec 29, 2024
b220de9
matrix.cpp
Lampa-lab Dec 29, 2024
fc0676c
matrix.cpp
Lampa-lab Dec 29, 2024
065e026
matrix.cpp
Lampa-lab Dec 29, 2024
d42e045
matrix.hpp
Lampa-lab Dec 29, 2024
c9fbab7
matrix.hpp
Lampa-lab Dec 29, 2024
4f73b65
matrix.cpp
Lampa-lab Dec 29, 2024
caf190c
matrix.cpp
Lampa-lab Dec 29, 2024
f3cede0
matrix.hpp
Lampa-lab Dec 29, 2024
62631f4
matrix.cpp
Lampa-lab Dec 29, 2024
6f314cb
matrix.hpp
Lampa-lab Dec 29, 2024
9487889
matrix.hpp
Lampa-lab Dec 29, 2024
3f122ce
matrix.cpp
Lampa-lab Dec 29, 2024
6d582b1
matrix.hpp
Lampa-lab Dec 29, 2024
4e53718
matrix.cpp
Lampa-lab Dec 29, 2024
9211d1d
matrix.hpp
Lampa-lab Dec 29, 2024
88792aa
matrix.cpp
Lampa-lab Dec 29, 2024
dbc1d51
matrix.hpp
Lampa-lab Dec 29, 2024
e23738a
matrix.hpp
Lampa-lab Dec 29, 2024
ae9a16d
matrix.cpp
Lampa-lab Dec 29, 2024
24e2bbd
matrix.cpp
Lampa-lab Dec 29, 2024
1020615
matrix.cpp
Lampa-lab Dec 29, 2024
de5b96b
matrix.cpp
Lampa-lab Dec 29, 2024
f212eca
matrix.hpp
Lampa-lab Dec 29, 2024
a7a28e7
matrix.cpp
Lampa-lab Dec 29, 2024
b4173a7
matrix.cpp
Lampa-lab Dec 29, 2024
383556c
matrix.cpp
Lampa-lab Dec 29, 2024
89b57dc
matrix.cpp
Lampa-lab Dec 29, 2024
6709dab
matrix.cpp
Lampa-lab Dec 29, 2024
6b308e2
figures.cpp
Lampa-lab Dec 31, 2024
d4b7543
figures.hpp
Lampa-lab Dec 31, 2024
d2d29b6
figures.cpp
Lampa-lab Dec 31, 2024
89ae92c
figures.cpp
Lampa-lab Dec 31, 2024
56cc12c
circular_queue.hpp
Lampa-lab Dec 31, 2024
a3a641b
circular_queue.cpp
Lampa-lab Dec 31, 2024
df04a8b
circular_queue.cpp
Lampa-lab Dec 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
matrix.cpp
  • Loading branch information
Lampa-lab authored Dec 29, 2024
commit 6709dabbf8c45cbc17d7112df99fce5f10b53398
2 changes: 1 addition & 1 deletion task1/matrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Matrix operator+(const Matrix& lhs, const Matrix& rhs)
{
if (lhs.GetRows() != rhs.GetRows() || lhs.GetCols() != rhs.GetCols())
{
cerr<<"невозможный аргумент";
throw invalid_argument("");
}
Matrix result(lhs.GetRows(), lhs.GetCols());
for (int i = 0; i < lhs.GetRows(); ++i)
Expand Down