필터 지우기
필터 지우기

Text plots (plotting without figure in command line)

조회 수: 2 (최근 30일)
Theo
Theo 2011년 6월 13일
Is there a way (or a package) to plot figures in the Matlab command line without using the figures? For example, upon startup using
matlab -nojvm -nodesktop -nodisplay -nosplash
By a text plot, I mean something along the lines of ASCII art (using 'x's and 'o's for markers).
This is useful if one wants to run programs remotely and generate figures, but without using forwarding like "ssh -Y".

채택된 답변

Doug Hull
Doug Hull 2011년 6월 13일
This feature was deprecated. It was available on 01/10/84 according to this old version of MATLAB I have on my machine.
Notice how extensive our language was at the time. :)

추가 답변 (2개)

Walter Roberson
Walter Roberson 2011년 6월 13일
I don't know if it is impossible, but I do not know how to do it.
I have implemented that sort of thing a few times, but it was in the context of packages that deliberately exposed their plot driver routines so that users could supply custom device drivers for unsupported devices (or to for enhanced functionality.)
The avenue that is sort-of supported is to use print to create the graphic, perhaps as a .png file, and then to have something that converts the png file to the format you can use. The options are a bit limited with -nodisplay but there are options: see here
  댓글 수: 1
Walter Roberson
Walter Roberson 2011년 6월 13일
You might be able to hack something by interfacing a driver according to the control logic used by graphics/private/render.m
Having scanned a little through there, I'm wondering if perhaps one might have an easier time by adapting Oliver's export_fig ?

댓글을 달려면 로그인하십시오.


Patrick Kalita
Patrick Kalita 2011년 6월 13일
MATLAB doesn't do this out of the box (anymore!), and I'm not aware of any 3rd party products that do it.
If you want to write it yourself, you might start by learning about rasterization algorithms.

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by