书栈网 · BookStack 本次搜索耗时 0.076 秒,为您找到 2306 个相关结果.
  • 2.2 程序包与环境配置

    807 2021-03-19 《Julia 编程基础》
    2.2 程序包与环境配置 2.2.1 仓库目录 2.2.2 环境配置 2.2 程序包与环境配置 我们已经知道,在 REPL 环境的 pkg 模式中,我们可以通过add 命令安装新的程序包。那么,这些新的程序包都被存储到哪里了呢? 2.2.1 仓库目录 说到程序包的存储,就不得不提及 Julia 的项目环境(project environme...
  • 流程控制

    流程控制 复合表达式 条件表达式 短路求值 重复执行:循环 异常处理 内置的 Exception -函数) throw 函数 错误 try/catch 语句 finally 子句 Tasks 任务(或协程) 流程控制 Julia 提供了大量的流程控制构件: 复合表达式 :begin 和 ; 。 条件表达式 :if -e...
  • Mathematical Operations and Elementary Functions

    Mathematical Operations and Elementary Functions Arithmetic Operators Boolean Operators Bitwise Operators Updating operators Vectorized “dot” operators Numeric Comparisons Cha...
  • Dates

    Dates Constructors Durations/Comparisons Accessor Functions Query Functions TimeType-Period Arithmetic Adjuster Functions Period Types Rounding Rounding Epoch API referen...
  • 环境变量

    环境变量 文件位置 JULIA_BINDIR JULIA_PROJECT JULIA_LOAD_PATH JULIA_DEPOT_PATH JULIA_HISTORY JULIA_PKGRESOLVE_ACCURACY 外部应用 JULIA_SHELL JULIA_EDITOR 并行 JULIA_CPU_THREADS JULIA_WO...
  • 字符串

    字符串 字符 字符串基础 Unicode 和 UTF-8 级联 插值 三引号字符串字面量 常见操作 非标准字符串字面量 正则表达式 字节数组字面量 版本号字面量 原始字符串字面量 字符串 字符串是由有限个字符组成的序列。然而, 字符又是什么呢。说英文者所熟悉的字符是字母 A , B , C , …,以及数字和常用的标点符号。这...
  • Calling C and Fortran Code

    Calling C and Fortran Code Creating C-Compatible Julia Function Pointers Mapping C Types to Julia Automatic Type Conversion Type Correspondences Bits Types Struct Type Correspo...
  • 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 ...
  • 与其他语言的显著差异

    与其他语言的显著差异 与 MATLAB 的显著差异 与 R 的显著差异 与 Python 的显著差异 与 C/C++ 的显著差异 与其他语言的显著差异 与 MATLAB 的显著差异 虽然 MATLAB 用户可能会发现 Julia 的语法很熟悉,但 Julia 不是 MATLAB 的克隆。 它们之间存在重大的语法和功能差异。 以下是一些可能...
  • Networking and Streams

    Networking and Streams Basic Stream I/O Text I/O IO Output Contextual Properties Working with Files A simple TCP example Resolving IP Addresses Networking and Streams Jul...