• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

graphing in matlab

toughwimp11

Senior member
How do i make a graph in matlab so that it shows a "dot dot dot" format with graphs. For example. I'm trying to make a bar graph of 4 points which are 2000, 100, 50, 10. I dont want the graph to be split equally distributed to 2000 because then the other points all seem very similar, so is there a way to have 0-100 and then a dot dot dot 2000 in the graph?
 
This is a topic that you might get better results with in either Highly Technical or Software for Windows. You might get a hit here too, just not from me 🙂. So here's a bump for you anyway.
 
You can try actually placing the '2000' point at, say, 110, but explicitly labeling it '2000' via Text(). Also, you can draw '. . .' manually with plot(), if you so desire.
 
Back
Top