Draw a 2D plot into a .txt file
Show older comments
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 Comments
Ameer Hamza
on 22 Sep 2020
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
on 22 Sep 2020
Accepted Answer
More Answers (0)
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!