line doesnt appear on my graph
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Austin
le 4 Oct 2013
Réponse apportée : Image Analyst
le 4 Oct 2013
hi,im trying to plot a graph below is my script and outcome of my plot(x,y) graph. can anyone enlighten me on why do i only get scatter points and not a line graph?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/150347/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/150349/image.jpeg)
2 commentaires
Réponse acceptée
Azzi Abdelmalek
le 4 Oct 2013
Modifié(e) : Azzi Abdelmalek
le 4 Oct 2013
x=-10:10
y=log(abs(x-27))./(x.^2+83)
plot(x,y)
% you have missed a . /
Plus de réponses (1)
Image Analyst
le 4 Oct 2013
Of course you need a dot like Azzi said. FYI, see this code to see how to adjust the line and markers:
x = 1:10;
y = sin(x);
% b means blue, o means small circle, - means solid line.
plot(x, y, 'bo-', ...
'LineWidth', 4, 'MarkerSize', 20, ...
'MarkerFaceColor', 'r', 'MarkerEdgeColor', [.5, .9, .7]);
You should now be able to get lines between the markers and adjust the way the markers look. Hope this helps. See the help for LineSeries or plot for more options.
0 commentaires
Voir également
Catégories
En savoir plus sur 2-D and 3-D 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!