Skip to content

Instantly share code, notes, and snippets.

@aateg
Last active June 2, 2019 05:09
Show Gist options
  • Save aateg/5bb07031acbd5d9cf93a02bc47df55a9 to your computer and use it in GitHub Desktop.
Save aateg/5bb07031acbd5d9cf93a02bc47df55a9 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"array([5, 4, 1, 1, 8])"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# randint\n",
"# gera número inteiro aleatório dado um intervalo\n",
"np.random.randint(0,10, size=5)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[0.64855699, 0.10291732],\n",
" [0.14988932, 0.61240147]])"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# random\n",
"# só contem argumento size\n",
"# gera valores aleatórios entre 0 e 1\n",
"np.random.random(size=(2,2))"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[-3.37557228, 8.00870989],\n",
" [-5.59341957, -7.40178609]])"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# uniform\n",
"# gera matriz com valores aleatórios no intervalo (a,b)\n",
"np.random.uniform(-10, 10, size=(2,2))"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment