Gantt Chart on Matlab

41 ビュー (過去 30 日間)
Mark S
Mark S 2020 年 4 月 1 日
編集済み: Muhammad Raza 2023 年 9 月 23 日
Hello,
i have this Matrix:
1 0 11
2 11 24
3 24 40
4 40 60
5 60 80
My actual plot look like this
How kan i delete the blue bars?
How can i make a Gannt Chart, from my Data Matrix?

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 1 日
This show how to make Gannt Chart from your data
A = [ 1 0 11
2 11 24
3 24 40
4 40 60
5 60 80];
h = barh(A(:,2:3), 'stacked');
h(1).Visible = 'off';
  2 件のコメント
Mark S
Mark S 2020 年 4 月 1 日
Ok it works. Thank you.
Ameer Hamza
Ameer Hamza 2020 年 4 月 1 日
Glad to be of help.

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

その他の回答 (3 件)

darova
darova 2020 年 4 月 1 日
Use only 3d column
A = [ 1 0 11
2 11 24
3 24 40
4 40 60
5 60 80];
bar(A(:,3))
  2 件のコメント
Mark S
Mark S 2020 年 4 月 1 日
編集済み: Mark S 2020 年 4 月 1 日
It should look like something like this:
I wanna delete my blue bars(in my first picuture). How can i do that?
Ameer Hamza
Ameer Hamza 2020 年 4 月 1 日
In MATLAB, you cannot delete them. You can just make then invisible. See my answer to see how to do that.

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


Alexis Wang
Alexis Wang 2022 年 8 月 30 日
If anyone has trouble making a Gantt chart again, I just published a custom Gantt chart for anyone to use and download on File Exchange here: https://www.mathworks.com/matlabcentral/fileexchange/116970-gantt-chart?s_tid=srchtitle. If you have any questions or feedback, feel free to let me know!

Muhammad Raza
Muhammad Raza 2023 年 9 月 23 日
編集済み: Muhammad Raza 2023 年 9 月 23 日
Here is a complete article along with the MATLAB Gantt Chart Code and video explanation as well.

カテゴリ

Help Center および File ExchangeEquivalent Baseband Simulation についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by