Komentarze do materiałów z laboratoriów 1

This commit is contained in:
Paweł Skórzewski 2021-04-16 10:29:31 +02:00
parent f8479d7d7f
commit aa0e400b1e
1 changed files with 3 additions and 3 deletions

View File

@ -295,7 +295,7 @@
}
],
"source": [
"x.shape"
"x.shape # wymiary macierzy x"
]
},
{
@ -315,7 +315,7 @@
}
],
"source": [
"x.sum(axis=0)"
"x.sum(axis=0) # wektor złożony z sum elementów w każdej kolumnie"
]
},
{
@ -335,7 +335,7 @@
}
],
"source": [
"x.mean(axis=1)"
"x.mean(axis=1) # wektor złożony ze średnich elementów w każdym wierszu"
]
},
{