一、安装相关软件
- 在Windows中安装VirtualBox;
- 在VirtualBox中安装Ubuntu Server;
- 在Ubuntu Server中安装cifs-utils:sudo apt-get install cifs-utils;
- 在Ubuntu Server中安装Octave:sudo apt-get install octave transfig epstool。
二、在Windows和Ubuntu Server之间建立共享目录
- 在Windows中共享一个share文件夹,网络权限和目录全限全部设为Everyone & Full control;
- 在Ubuntu Server中建立映射目录:sudu mkdir /mnt/share;
- 在Ubuntu Server中挂载网络驱动器:sudo mount -t cifs //主机IP/share /mnt/share -o username=主机用户名;
- 在Ubuntu Server中的/home目录下建立快捷链接:ln -s /mnt/share/ ~/share/。
三、绘图
- 在Windows中编写matlab绘图代码文件,放到共享文件夹中,例如文件test.m;
- 绘图代码中,plot语句的下面要将图像输出到文件:print -dpng myfig.png;
- 在Ubuntu Server中切换到共享目录:cd ~/share;
- 以静默方式运行octave:sudo octave -q test.m;
- 在Windows中可以看到共享目录下多了一个myfig.png,就是函数图像。
一个测试例程:
x = 0:pi/100:2*pi; y = tan(x); plot(x,y); print -dpng xab.png;
附更改控制台分辨率方法:
编辑配置文件,执行命令:sudo vi /etc/default/grub
GRUB_GFXMODE=1024x768x24
GRUB_CMDLINE_LINUX_DEFAULT="splash xvga=1024x768x24 consoleblank=0"
# splash:开机和关机时显示图形画面
# xvga=1024x768x24:屏幕分辨率和颜色深度
# consoleblank=0:禁用屏保
保存后执行命令:sudo update-grub2
时间: 2024-11-06 02:03:08