消除Octave开始文本

时间:2017-12-30 16:23:28

标签: octave

当Octave启动时,会打印出来

  

GNU Octave,版本4.2.1版权所有(C)2017 John W. Eaton等。   这是免费软件;查看复制条件的源代码。   绝对无保证;甚至没有适销性或   适用于特定用途。有关详细信息,请键入'保修'。

     

Octave配置为" x86_64-pc-linux-gnu"。

     

有关Octave的更多信息,请访问:   http://www.octave.org

     

如果您觉得此软件有用,请提供帮助。更多   信息,请访问http://www.octave.org/get-involved.html

     

阅读http://www.octave.org/bugs.html以了解如何提交错误   报告。有关以前版本更改的信息,请键入   '新闻'

有没有办法关闭此打印输出?每次启动Octave时我都不需要阅读它。

1 个答案:

答案 0 :(得分:4)

使用quiet选项,如下所示:

third

来自手册中的command line options section

  

- 无声    - 安静   -q

var myArray = [
[[0, "Description 1", 0, 0, 1, 6, 0, 0, 0, true, 0]],
[[0, "Description 2", 0, 0, 1, 6, 0, 0, 0, true, 0]],
[[0, "Description 3", 0, 0, 1, 6, 0, 0, 0, true, 0]],
];

function randomNumber (min, max) {
return Math.floor((Math.random() * max) + min);
};

counter = 1;

function myfunction(){

myrand = randomNumber(0,myArray.length-1); 
mytempArray = myArray.slice(myrand,myrand+1);
mytempArray[0][0][0] = counter;
counter++;
};

myfunction();