一键导入
numpy
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Best practices for building CLI applications with Click including commands, groups, options, and testing.
Best practices for Django web development including models, views, templates, and testing.
Best practices for Flask web development including routing, blueprints, and testing.
Best practices for template rendering with Jinja2 including environments, filters, autoescaping, and security.
Best practices for writing and organizing tests with pytest including fixtures, parametrize, and plugins.
Best practices for HTTP client usage with Requests including sessions, error handling, and timeouts.
| name | numpy |
| description | Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization. |
Best practices for numerical computing with NumPy including arrays, broadcasting, and vectorization.
Apply this skill when doing numerical computing with NumPy — arrays, broadcasting, linear algebra, random sampling.
np.float64, np.int32) when creating arrays.np.zeros, np.ones, np.empty, np.arange, np.linspace over list-based construction.np.where() for conditional element-wise operations.np.float32 instead of np.float64 when precision is not critical to halve memory.reshape, slicing) instead of copies when data doesn't need mutation.np.memmap for arrays too large to fit in RAM.np.random.default_rng(seed) (new Generator API) instead of np.random.seed().==; use np.allclose() or np.isclose().np.matrix — it's deprecated; use 2D np.ndarray.