MATLAB: Ploting graph

plot

hi i need to plot the creation time of job
if the no of task is 4 , for that how to plot the graph
function bargraph
sched = findResource('scheduler', 'configuration','local');
timingStart = tic;
start = tic;
job = createJob(sched);
times.jobCreateTime = toc(start);
description.jobCreateTime = 'Job creation time';
plot('Job creation time');
end
please help me

Best Answer

bar(times.jobCreateTime);
datetick('y', 'HH:MM:SS.FFF');
It is odd to only want to plot one data point, though.