Hello, I'm using MatLab for my cs class in college, it's an intro class and I know close to nothing about coding.
I would like to make a graph of x and y values, I understand that part, with numbers though.
My x values are i guess words instead of numbers, how do I represent that?
Thank you!

 採用された回答

BN
BN 2020 年 2 月 1 日
編集済み: BN 2020 年 2 月 1 日

3 投票

First, you can create Words
Words = {'word_one'; 'word_two'; 'word_three'};
then plot what ever you want, and after plot part:
set(gca,'xtick',[1:3],'xticklabel',Words)
Further, you can read Label x-axis.
If you want to rotate Words after doing this, as I can predict, it you can read this documentation: xtickangle

4 件のコメント

Star Strider
Star Strider 2020 年 2 月 1 日
Since we do not know what the values are on the x-axis, a more appropriate approach would be:
set(gca,'xtick',linspace(min(xlim),max(xlim),3),'xticklabel',Words)
BN
BN 2020 年 2 月 1 日
You are right. Sorry, it's my bad. Thank you for let me know. ?
Star Strider
Star Strider 2020 年 2 月 1 日
No worries!
Monica Rochnowski
Monica Rochnowski 2020 年 2 月 1 日
You guys are both awesome! Thank you so much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by