书栈网 · BookStack 本次搜索耗时 0.091 秒,为您找到 2306 个相关结果.
  • Stack Traces

    Stack Traces Viewing a stack trace Extracting useful information Error handling Exception stacks and ) current_exceptions Comparison with ) backtrace Stack Traces The St...
  • Stack Traces

    Stack Traces Viewing a stack trace Extracting useful information Error handling Exception stacks and catch_stack Comparison with backtrace Stack Traces The StackTraces mo...
  • 运行外部程序

    运行外部程序 插值 引用 管道 避免管道中的死锁 复杂示例 Cmd对象 运行外部程序 Julia 中命令的反引号记法借鉴于 shell、Perl 和 Ruby。然而,在 Julia 中编写 julia > `echo hello` `echo hello` 在多个方面上与 shell、Perl 和 Ruby 中的行为有所不...
  • Performance Tips

    Performance Tips Performance critical code should be inside a function Avoid untyped global variables Measure performance with -and-pay-attention-to-memory-allocation) @time an...
  • 变量作用域

    变量作用域 作用域结构 全局作用域 局部作用域 let块 对于循环和推导式 常量 变量作用域 变量的作用域是代码的一个区域,在这个区域中这个变量是可见的。给变量划分作用域有助于解决变量命名冲突。这个概念是符合直觉的:两个函数可能同时都有叫做 x 的参量,而这两个 x 并不指向同一个东西。相似地,也有很多其他的情况下代码的不同块会使用同...
  • 稀疏数组

    稀疏数组 压缩稀疏列(CSC)稀疏矩阵存储 稀疏向量储存 稀疏向量与矩阵构造函数 稀疏矩阵的操作 Correspondence of dense and sparse methods Sparse Arrays 稀疏数组 Julia 在 SparseArrays 标准库模块中提供了对稀疏向量和稀疏矩阵 的支持。与稠密数组相比,包含足够多...
  • 5.2 整数

    557 2021-03-19 《Julia 编程基础》
    5.2 整数 5.2.1 类型与取值 5.2.2 表示方法 5.2.3 关于溢出 5.2.4 BigInt 5.2 整数 我们在前面说过,整数类型又被分为有符号类型和无符号类型。后两者分别包含了 6 种和 5 种具体类型。我们为了表示这些类型的值而输入的内容又被称为整数字面量。比如,上一章示例中的1 、2 、4 、2020 都是整数字面量。 ...
  • Sparse Arrays

    Sparse Arrays Compressed Sparse Column (CSC) Sparse Matrix Storage Sparse Vector Storage Sparse Vector and Matrix Constructors Sparse matrix operations Correspondence of dense ...
  • Sorting and Related Functions

    Sorting and Related Functions Sorting Functions Order-Related Functions Sorting Algorithms Alternate orderings Sorting and Related Functions Julia has an extensive, flexibl...
  • Multi-dimensional Arrays

    Multi-dimensional Arrays Basic Functions Construction and Initialization Array literals Concatenation Typed array literals Comprehensions Generator Expressions Indexing Ind...