首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏学编程的GISer

    VSCode User Snippets(用户代码片段):用快捷键快速生成代码,提高你的开发效率!

    CURRENT_MINUTE当前分钟为两位数 CURRENT_SECOND当前第二位为两位数 CURRENT_SECONDS_UNIX自 Unix 纪元以来的秒数 对于插入随机值: RANDOM6 个随机的 Base

    3.3K41编辑于 2022-09-26
  • 来自专栏vanguard

    FP32 & TF32

    FP32 = float32 单精度浮点格式 IEEE 754-2008 标准指定了额外的浮点类型,例如 64 位 base-2双精度,以及最近的 base-10 表示。

    20.2K22发布于 2021-10-26
  • 来自专栏小麦苗的DB宝专栏

    在Docker中快速使用SQL Server 2022环境

    strong system administrator (SA) password: At least 8 characters including uppercase, lowercase letters, base

    6.8K31编辑于 2023-04-27
  • 来自专栏程序你好

    在货币计算中应该避免浮点数

    例如,在base-10中,1/2有一个终止展开(0.5),而1/3没有(0.333…)。在base-2中,只有分母是2的幂(如1/2或3/16)的理性终止。

    3.3K30发布于 2018-09-29
  • 来自专栏DL

    【C语言基石】一文吃透进制转换:原理、公式、代码全解析

    十进制(Decimal, Base-10): 人类日常使用的计数系统。 二进制(Binary, Base-2): 计算机底层存储和运算的系统。

    30210编辑于 2025-12-23
  • 来自专栏bit哲学院

    C++/C++11中头文件cmath的使用

    printf("log(%f) = %f\n", param, result); // ln(5.5) = 1.704748 } { // std::log10: Returns the common (base

    1.1K30发布于 2021-02-11
  • 来自专栏bit哲学院

    C++/C++11中头文件cmath的使用

    printf("log(%f) = %f\n", param, result); // ln(5.5) = 1.704748 } { // std::log10: Returns the common (base

    3K20发布于 2021-02-11
  • 来自专栏阿泽的学习笔记

    【Hive】Hive 的内置函数

    「以自然数为底 d 的对数,a 可为小数」 log10(DOUBLE a), log10(DECIMAL a) Returns the base-10 logarithm of the argument

    2K22发布于 2020-07-20
  • 来自专栏静晴轩

    lua Standard Libraries

    should be an integer). math.log (x) Returns the natural logarithm of x. math.log10 (x) Returns the base

    1.3K90发布于 2018-03-27
  • 来自专栏信数据得永生

    JavaScript 权威指南第七版(GPT 重译)(一)

    Math.hypot(3, 4) // => 5: square root of sum of squares of all arguments Math.log10(100) // => 2: Base

    1.5K10编辑于 2024-03-23
  • 来自专栏sunsky

    Lua 5.1 参考手册

    . ---- math.log10 (x) Returns the base-10 logarithm of x. ---- math.max (x, ···) Returns the maximum

    4.6K30发布于 2020-08-20
  • 来自专栏信数据得永生

    JavaScript 权威指南第七版(GPT 重译)(五)

    通过示例可以更清楚地理解这一点: // A generator function that yields the set of one digit (base-10) primes. function*

    1.4K10编辑于 2024-03-23
领券