Last active
September 2, 2016 18:31
-
-
Save tobydriscoll/f0bbaad1d4bc67083a16cdbfd37ea8c3 to your computer and use it in GitHub Desktop.
scalar vs 1-by-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"dot(u,v) gives -2 - 3im\n", | |
"u'*v gives Complex{Int64}[-2 - 3im]\n" | |
] | |
} | |
], | |
"source": [ | |
"u = [ 4; -1; 2+2im ]\n", | |
"v = [ -1; 1im; 1 ]\n", | |
"println(\"dot(u,v) gives \", dot(u,v))\n", | |
"println(\"u'*v gives \",u'*v)" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Julia 0.4.3", | |
"language": "julia", | |
"name": "julia-0.4" | |
}, | |
"language_info": { | |
"file_extension": ".jl", | |
"mimetype": "application/julia", | |
"name": "julia", | |
"version": "0.4.3" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment