Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sci_python
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SCW2017
sci_python
Commits
c0af3f7d
Commit
c0af3f7d
authored
May 02, 2017
by
Inigo Aldazabal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add python3 matrix multiplication
parent
9cd7a610
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
10 deletions
+25
-10
numpy-tutorial-clean.ipynb
numpy-tutorial-clean.ipynb
+10
-1
numpy-tutorial.ipynb
numpy-tutorial.ipynb
+15
-9
No files found.
numpy-tutorial-clean.ipynb
View file @
c0af3f7d
...
@@ -623,6 +623,15 @@
...
@@ -623,6 +623,15 @@
"outputs": [],
"outputs": [],
"source": []
"source": []
},
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
},
{
{
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
...
@@ -1219,7 +1228,7 @@
...
@@ -1219,7 +1228,7 @@
"name": "python",
"name": "python",
"nbconvert_exporter": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"pygments_lexer": "ipython3",
"version": "3.
5.1
"
"version": "3.
6.0
"
}
}
},
},
"nbformat": 4,
"nbformat": 4,
...
...
numpy-tutorial.ipynb
View file @
c0af3f7d
...
@@ -685,7 +685,20 @@
...
@@ -685,7 +685,20 @@
},
},
"outputs": [],
"outputs": [],
"source": [
"source": [
"c.dot(c)"
"# python 2 and 3\n",
"np.dot(c, c)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"# python 3\n",
"c @ c"
]
]
},
},
{
{
...
@@ -873,13 +886,6 @@
...
@@ -873,13 +886,6 @@
"\n"
"\n"
]
]
},
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"\n"
]
},
{
{
"cell_type": "markdown",
"cell_type": "markdown",
"metadata": {},
"metadata": {},
...
@@ -1367,7 +1373,7 @@
...
@@ -1367,7 +1373,7 @@
"name": "python",
"name": "python",
"nbconvert_exporter": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"pygments_lexer": "ipython3",
"version": "3.
5.1
"
"version": "3.
6.0
"
}
}
},
},
"nbformat": 4,
"nbformat": 4,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment