Hi everyone,
Is there any existing function that allows to draw a simple 2D Graph into a .txt file ?
For example, let's say we have :
X = [0 1 2 3]
Y = [2 1 1 4]
fileID = fopen('mytxtFile.txt','w') ;
I doubt there is , but is there a function "drawIntoTxtFile" such that if I do : drawIntoTxtFile(fileID,X,Y), a "text graph" is generated into the txt file, which may look like this :
^
4 | X
3 |
2 X
1 | X X
0 |_ _ _ _ _ _ __ _ _ _ _ _ _ _ _>
0 1 2 3
I'd rather avoid coding myself the function if it already exists obviously, but couldn't find any help online.
Thanks a lot to you

댓글 수: 2

Ameer Hamza
Ameer Hamza 2020년 9월 22일
I don't think such a thing already exists, but what is the reason for doing this? Do you want to display a graph in some text-based terminal?
CN75010
CN75010 2020년 9월 22일
Yes, I actually need to draw a graph into a txt file for a project, and just making a table won’t cut it for my needs

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

 채택된 답변

Ameer Hamza
Ameer Hamza 2020년 9월 22일
편집: Ameer Hamza 2020년 9월 22일

0 개 추천

Someone has done something similar in python: https://github.com/nschloe/termplotlib. You can use this library in MATLAB: https://www.mathworks.com/help/matlab/call-python-libraries.html.

댓글 수: 2

CN75010
CN75010 2020년 9월 22일
Thanks, that’s perfect !
Ameer Hamza
Ameer Hamza 2020년 9월 22일
I am glad to be of help!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Data Import and Export에 대해 자세히 알아보기

제품

릴리스

R2016b

태그

질문:

2020년 9월 22일

댓글:

2020년 9월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by