首页
Notebook
Notebook
NumPy
Matplotlib
SciPy
算法练习
PAT
《算法笔记》
hdoj
力扣
算法设计与分析
Search
登录
or
注册
岁月悠悠,衰微只及肌肤;热忱抛却,颓唐必至灵魂。
Home
Alex's Notebook
NumPy 广播(Broadcast)
广播(Broadcast)是 numpy 对不同形状(shape)的数组进行数值计算的方式, 对数组的算术运算通常在相应...
Post on 2024-04-29
74
0
Alex's Notebook
NumPy 高级索引
整数数组索引 以下实例获取数组中 (0,0),(1,1) 和 (2,0) 位置处的元素 import numpy as ...
Post on 2024-04-29
86
0
Alex's Notebook
NumPy 切片和索引
ndarray对象的内容可以通过索引或切片来访问和修改,与 Python 中 list 的切片操作一样。 ndarray...
Post on 2024-04-29
75
0
Alex's Notebook
NumPy 从数值范围创建数组
numpy.arange([start,] stop[, step,], dtype=None, *, like=Non...
Post on 2024-04-29
87
0
Alex's Notebook
NumPy 从已有的数组创建数组
numpy.asarray(a, dtype=None, order=None, *, like=None) 参数 描述...
Post on 2024-04-29
91
0
Alex's Notebook
NumPy 创建数组
numpy.empty(shape, dtype=float, order=’C’, *, li...
Post on 2024-04-29
87
0
Alex's Notebook
NumPy 数组属性
NumPy 数组的维数称为秩(rank),秩就是轴的数量,即数组的维度,一维数组的秩为 1,二维数组的秩为 2,以此类推...
Post on 2024-04-29
79
0
Alex's Notebook
NumPy 数据类型
名称 描述 bool_ 布尔型数据类型(True 或者 False) int_ 默认的整数类型(类似于 C 语言中的 l...
Post on 2024-04-29
89
0
Alex's Notebook
Ndarray对象
NumPy Ndarray 对象 ndarray 对象是用于存放同类型元素的多维数组。 ndarray 中的每个元素在内...
Post on 2024-04-29
76
0
Alex's Notebook
python中isdigit()、isdecimal()、isnumeric()区别
num = "1" #unicode num.isdigit() # True num.isdecimal() # Tr...
Post on 2024-04-18
88
0
1
2
3
4
5
6
7
8
···
notice:若latex公式渲染失败请重新刷新页面
书签
算法汇总
分类
《算法笔记》
(30)
Alex's Notebook
(39)
English
(1)
hdoj
(35)
leetcode
(10)
mathematics
(1)
Matplotlib
(8)
numpy
(17)
PAT
(36)
Uncategorized
(1)
Unresolved
(1)
算法设计与分析
(10)
近期文章
递归
28 12 月, 2024
字符串比较问题
26 12 月, 2024
租用游艇问题
26 12 月, 2024
数字三角问题(数塔问题)
26 12 月, 2024
石子合并问题
26 12 月, 2024
X