plot problem in GUI for 2014b
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146214/image.jpeg)
However, after I update into 2014b, the plot shows like this: No dashed lines ...
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146215/image.jpeg)
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 commentaires
Adam
le 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?
Réponse acceptée
Brandon
le 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');
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!