本文介绍了macbook pro 上的 Matlab,视网膜的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我最近买了一台 macbook pro,刚刚安装了 matlab 2013b.我有一个视网膜显示器,但是当我运行它时,matlab 本身的分辨率看起来不太好,它几乎是模糊和像素化的.有没有其他人有类似的问题,有没有办法解决这个问题?

Hi I recently bought a macbook pro and just installed matlab 2013b. I have a retina display, but the resolution of matlab itself when I run it, it does not look very nice, it's almost blurry and pixelated. Does anyone else have a similar issue and is there a way to fix this?

推荐答案

Matlab 2013b 使用它自己的 Java 版本,而不是 OS X 版本(默认情况下未安装).如果您为操作系统安装最新版本的 Java,然后替换 Matlab 的版本,它应该可以解决一些问题:文本将针对 Retina 进行优化,但图像仍然不会.

Matlab 2013b uses it's own version of Java, rather than the OS X version (which is not installed by default). If you install the latest version of Java for the OS, and then replace Matlab's version, it should fix some of the problem: the text will be optimized for Retina, but the image still won't be.

替换Java的命令是:

The commands to replace Java are:

cd /Applications/MATLAB_R2013b.app/sys/java/jre/maci64
mv jre jre.orig}
ln -s /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/Contents/Home jre

或者,最后一个命令可能是:

Alternatively, the last command might be:

ln -s /Library/Java/JavaVirtualMachines/jdk1.7.0_45.jdk/Contents/Home/jre

命令取自 Matlab Central 的 线程 86910.

The commands are taken from Matlab Central's thread 86910.

这篇关于macbook pro 上的 Matlab,视网膜的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 00:55