书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 930 个相关结果.
  • Training the Filter

    Training the Filter Training the Filter Since you wrote classify and train to take a string argument, you can test them easily at the REPL. If you haven’t yet, you should swi...
  • Noteworthy Differences from other Languages

    Noteworthy Differences from other Languages Noteworthy differences from MATLAB Noteworthy differences from R Noteworthy differences from Python Noteworthy differences from C/C++...
  • Noteworthy Differences from other Languages

    Noteworthy Differences from other Languages Noteworthy differences from MATLAB Noteworthy differences from R Noteworthy differences from Python Noteworthy differences from C/C++...
  • reduce函数

    reduce函数 openCypher兼容性 语法 示例 reduce函数 reduce() 将表达式逐个应用于列表中的元素,然后和累加器中的当前结果累加,最后返回完整结果。该函数将遍历给定列表中的每个元素e ,在e 上运行表达式并和累加器的当前结果累加,将新的结果存储在累加器中。这个函数类似于函数式语言(如Lisp和Scala)中的fold或r...
  • Scheme简明教程

    4789 2019-05-22 《Scheme简明教程》
    TYS-zh-translation Scheme简明教程 说明 其他资源(other resources) All feedbacks are welcome! TYS-zh-translation A Chinese translation of “teach-yourself-scheme-in-fixnum-days” Sche...
  • Manipulating the Lexical Environment

    Manipulating the Lexical Environment Manipulating the Lexical Environment The largest class of special operators contains the operators that manipulate and access the lexical e...
  • “Destructive” Operations

    “Destructive” Operations “Destructive” Operations If Common Lisp were a purely functional language, that would be the end of the story. However, because it’s possible to modify...
  • 闭包

    1627 2018-02-06 《RustPrimer 中文版》
    闭包 闭包 闭包是什么?先来看看维基百科 上的描述: 在计算机科学中,闭包(英语:Closure),又称词法闭包(Lexical Closure)或函数闭包(function closures),是 引用了自由变量的函数 。这个被引用的自由变量将和这个函数一同存在,即使已经离开了创造它的环境也不例外。所以,有另一种说法认为闭包是由函数和与其相关的...
  • 1.1 初识 Julia

    1762 2021-03-19 《Julia 编程基础》
    1.1 初识 Julia 1.1.1 为什么要有 Julia 1.1.2 主要特性 1.1.3 更多的特性 1.1 初识 Julia 1.1.1 为什么要有 Julia 首先,我们要知道的是,Julia 是一门计算机编程语言。也就是说,我们可以使用符合 Julia 语言规范的代码来编写程序。这些程序可以用于纯粹的数学和科学计算、存取本地文件...
  • 4.4 序列 (Sequences)

    4.4 序列 (Sequences) 4.4 序列 (Sequences) 在 Common Lisp 里,序列类型包含了列表与向量(因此也包含了字符串)。有些用在列表的函数,实际上是序列函数,包括 remove 、 length 、 subseq 、 reverse 、 sort 、 every 以及 some 。所以 46 页(译注...