How to change the linewidth of a curve in a graph by using code?
Afficher commentaires plus anciens
like:
x=linspace(0,2*pi);
y=sin(x)
I want the sine curve's linewidth is 2.
Réponse acceptée
Plus de réponses (1)
Well, you haven't plotted anything with that code, but assuming you do:
hLine = plot( x, y );
hLine.LineWidth = 2; % Matlab R2014b or later
set( hLine, 'LineWidth', 2 ) % Matlab R2014a or earlier
or simply
hLine = plot( x, y, 'LineWidth', 2 );
all at once
1 commentaire
bainhome
le 7 Oct 2016
Catégories
En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!