plot problem in GUI for 2014b
1 view (last 30 days)
Show older comments
First of all, everything works great on 2013b until I upgrade to 2014b. I am really confused here.
The plot I want to get looks like this: There are some dashed lines in the plot.
However, after I update into 2014b, the plot shows like this: No dashed lines ...
Here is the code I was using and I did not change it after updating to 2014b
function [colorline, legendCell] = plotC(C, h, numSpec, c, ind)
lineC = plot(h, C); % plot the curve(random signal in the plot)
%%add legend (no problem here)
colorline = get(lineC,'Color');
if ~iscell(colorline)
colorline = {colorline};
end
legendCell = cellstr(num2str(ind, 'Factor %-d'));
legend(h, legendCell)
%%finish adding legend
%%add dashed lines *(problem after updating to 2014b)*
yLimits = get(h,'YLim');
hold(h,'on')
for i = 1:c - 1
plot(h, i*numSpec,linspace(yLimits(1),yLimits(2)),'Color', 'k')
end
hold(h, 'off')
%%finish adding dashed line
Thank you very much for any suggestions!
2 Comments
Adam
on 25 Nov 2014
What does it look like in the plot browser? Do you have the number of plots you expect in there or is there just the original plot and nothing else?
If the plots are there (in the plot browser) do they appear when you resize the figure or are they not visible whatever you do?
Accepted Answer
Brandon
on 25 Nov 2014
Is there any reason as to why you are manually defining grid lines (desired color or something)? Why don't you use the built in grid lines and see how that work:
Try:
set(gca,'XGrid','on', 'XMinorGrid','on');
or
set(gca,'XGrid','on');
More Answers (0)
See Also
Categories
Find more on Line Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!