2

我希望能够在控制台中显示更多的计算结果,甚至是整个结果J。例如,以下仅显示

   i.1000
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88...

高达 88。

如何显示第一个200结果,甚至整个 1000 个结果?我现在知道的唯一方法是将它写入文件并在控制台之外读取它。

4

2 回答 2

2

The length of the displayed line is determined by the foreign conjunction 9!:37

First, store the default so you can easily go back

   t=. 9!:36 '' NB. The current default
0 256 0 222 

First number - End of line indicator 0 for LF and 2 for CRLF Second number - Maximum line length (this is what you want to change) Third number - Maximum number of lines before ... (b) Fourth number - Maximum number of lines after ... (a)

If a + b is more than the number of lines to be shown, then the first b lines are shown followed by ... then the last a lines.

   9!:37 [ 0 700 0 222   NB. the [ is to separate the integer list from the conjunction
   i.1000
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 20...

9!:37 t NB. Reset back to stored default

   i. 1000
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88...

This works with the J front end, but I have not yet tested with console. Since your defaults look the same with console and there is no indication that I can find in the dictionary that console works differently than the front end, I would expect this to work. Let me know if there is a difference in your console.

Cheers, bob

于 2013-07-27T22:13:36.810 回答
2

有两种方法。

非编程方式:

在控制台中,编辑 > 配置...

在“类别”下方,选择“参数”。在“会话管理器”组框中,将“最大行长度”设置为您需要的大小。单击“确定”。这会将其保存到您的个人偏好中。

以编程方式:

使用外国9!:37

输出控制。控制会话管理器输出的 4 元素向量:

行尾序列 0 换行;2 回车换行
最大行长度 输出行在此长度处被截断并附加“...”。
maximum line before 如果输出的总行数超过“maximum lines before”b和“maximum lines after”a的总和,则输出前b行,然后是一行“...”,然后是最后一行。
见上文后的最大线。

输出控件的默认值为 0 256 0 222 。

因此,例如:

9!:37 [ 0 1000 0 222

那只会将它设置为与您给它的值一样宽。要将其调整为您想要的值,您必须确定需要输出的大小,所以说:

outputsizes =. 9!:36'' NB. Get values
valuetodisplay =. i. 1000
printsize =. # ": valuetodisplay
9!:37 [ printsize 1 } outputsizes
于 2013-07-27T22:04:58.697 回答