英文: In Dyalog APL, can an Reduce N-Wise be a function or is it just an expression? 问题 当我评估 2,/ 时,我希望...
在Dyalog APL中访问嵌套数组中每个数组中的相同行/列。
英文: Access same row/column in each array in nested arrays in Dyalog APL 问题 以下是翻译好的内容: 有没有一种方法可以在不使用循...
在Dyalog APL中条件断点后恢复执行
英文: Resuming execution after conditional breakpoint in Dyalog APL 问题 在之前的问题中,我问过如何在Dyalog RIDE中设置条件断...
获取表格中最高温度的日期(日期)。
英文: Get the day(s) with the highest temperature from a table 问题 我正在尝试获取APL中最高温度的日期。 这是我的代码: days ← &...
在Dyalog RIDE中设置条件断点。
英文: Setting a conditional breakpoint in Dyalog RIDE 问题 在Dyalog RIDE中,我知道如何设置断点,以在APL源代码中的特定行上停止执行。是否...
打印在APL中两个数字之间的值如何?
英文: how to print values between 2 numbers in APL? 问题 我无法打印从30到50(包括30和50)的数值在APL中。 实际上,我尝试了很多运算符,但都没...
为什么 v[1+(0×(⍴v))] 会产生等级错误,而不是 2D 数组中的第一个项目?
英文: Why does v[1+(0×(⍴v))] produce a rank error and not the first item in a 2d array? 问题 首先,我将v...
(APL)关于幂运算和圆形函数
英文: (APL) About the power and circle functions 问题 *○0j1为什么输出-1,但*(○0j1)不输出?(¯1j1e¯...
使用 APL 迭代初始的 N x N 生命游戏时,为什么要创建”邻域”?
英文: Why create surrounding "neighborhoods" when using APL to iterate through the initial N...