Commit 9c711e42 authored by Steve Tjoa's avatar Steve Tjoa

more on imports, audio display, reorg

parent 58de3a15
{ {
"metadata": { "metadata": {
"name": "", "name": "",
"signature": "sha256:e7d6cf30802c4d390c3070d05c8a43f84ea2ac3448983c9eac409c31fe9e20c0" "signature": "sha256:b2601021bd013cb3fdcacb2e0157136ad11d85f587ddf0ff2b13b65d9283ef7f"
}, },
"nbformat": 3, "nbformat": 3,
"nbformat_minor": 0, "nbformat_minor": 0,
...@@ -48,11 +48,10 @@ ...@@ -48,11 +48,10 @@
"cell_type": "code", "cell_type": "code",
"collapsed": false, "collapsed": false,
"input": [ "input": [
"#import scipy\n", "x = scipy.arange(50)\n",
"\n", "# Try these too:\n",
"x = scipy.arange(100)\n", "# x = scipy.randn(50)\n",
"# x = scipy.randn(100)\n", "# x = scipy.linspace(0, 1, 50)\n",
"# x = scipy.linspace(0, 1, 100)\n",
"\n", "\n",
"x" "x"
], ],
...@@ -62,26 +61,15 @@ ...@@ -62,26 +61,15 @@
{ {
"metadata": {}, "metadata": {},
"output_type": "pyout", "output_type": "pyout",
"prompt_number": 1, "prompt_number": 2,
"text": [ "text": [
"array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,\n", "array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16,\n",
" 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,\n", " 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33,\n",
" 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50,\n", " 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49])"
" 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67,\n",
" 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84,\n",
" 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99])"
] ]
} }
], ],
"prompt_number": 1 "prompt_number": 2
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
} }
], ],
"metadata": {} "metadata": {}
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment