当我这样做时:
$ gnuplot
> set term x11
> plot x*x
Gnuplot正确地打开了一个带有情节的窗口,一切都很好。
然而,当我尝试这个时:
$ gnuplot -e "set term x11; plot x*x"
窗口只会闪烁并立即消失。
我尝试了gnuplot --persist
和set term x11 persist
,但都没有。
我在Windows 10上使用Xming作为X服务器在Ubuntu中运行Gnuplot。
答案 0 :(得分:1)
必须首先提供-p
选项
gnuplot -p -e "set term x11; plot x*x"
顺便说一下,-p
选项只是--persist
答案 1 :(得分:0)
在命令中添加import { MatSnackBar } from '@angular/material';
import { CustomSnackBar } from './custom-snackbar/custom-snackbar.component';
export class AppComponent {
constructor(private snackbar: MatSnackBar){}
login() {
/*
* `openFromComponent` accepts two properties:
* The first param is `ComponentType<any>`, or your snackbar
* component
* The second param is `MatSnackBarConfig`. In this sample,
* I'll be using the duration param.
*/
this.snackbar.openFromComponent(CustomSnackBar, { duration: 5000 };
}
}
解决了我的问题。
这是最后一个命令:
pause -1