码迷,mamicode.com
首页 > Windows程序 > 详细

Windows下绘制数学函数图像的方法

时间:2014-12-16 16:56:41      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   on   文件   div   log   

一、安装相关软件

  1. 在Windows中安装VirtualBox;
  2. 在VirtualBox中安装Ubuntu Server;
  3. 在Ubuntu Server中安装cifs-utils:sudo apt-get install cifs-utils;
  4. 在Ubuntu Server中安装Octave:sudo apt-get install octave transfig epstool。


二、在Windows和Ubuntu Server之间建立共享目录

  1. 在Windows中共享一个share文件夹,网络权限和目录全限全部设为Everyone & Full control;
  2. 在Ubuntu Server中建立映射目录:sudu mkdir /mnt/share;
  3. 在Ubuntu Server中挂载网络驱动器:sudo mount -t cifs //主机IP/share /mnt/share -o username=主机用户名;
  4. 在Ubuntu Server中的/home目录下建立快捷链接:ln -s /mnt/share/ ~/share/。


三、绘图

  1. 在Windows中编写matlab绘图代码文件,放到共享文件夹中,例如文件test.m;
  2. 绘图代码中,plot语句的下面要将图像输出到文件:print -dpng myfig.png;
  3. 在Ubuntu Server中切换到共享目录:cd ~/share;
  4. 以静默方式运行octave:sudo octave -q test.m;
  5. 在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

Windows下绘制数学函数图像的方法

标签:style   blog   ar   color   sp   on   文件   div   log   

原文地址:http://www.cnblogs.com/devymex/p/4167354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!