Title causes error when trying to plot graph
12 次查看(过去 30 天)
显示 更早的评论
For some reason my code won't put a title on the axes. I get the error:
Attempted to access title(104); index out of bounds because
numel(title)=6.
Error in DisplayShift_Fluorescence (line 41)
title('h');
plot(AverageCalibrated(1:32,9),AverageCalibrated(1:32,10))
hold on
plot(AverageNonCalibrated(1:32,9),AverageNonCalibrated(1:32,10),'r')
legend('Calibrated','NonCalibrated')
xlabel('Wavelength')
ylabel('Intensity')
title('h');
0 个评论
采纳的回答
Sean de Wolski
2012-11-8
That means you have a variable named title
which title
whos title
To resolve it clear or rename that variable:
clear title
6 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Labels and Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!