Gantt Chart on Matlab
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...
4 years 前 | 4 个回答 | 0
4
个回答
提问
Sortrows_function of a Matrix
T=[1:10;40,43,18,43,34,18,23,31,44,38]';
T=ShortestTime(T)
T=LongestTime(T)
function [c]=ShortestTime(T)
c=sortrows(T,[2 1])...