Effacer les filtres
Effacer les filtres

How to change the linewidth of a curve in a graph by using code?

1 vue (au cours des 30 derniers jours)
bainhome
bainhome le 7 Oct 2016
Commenté : bainhome le 7 Oct 2016
like:
x=linspace(0,2*pi);
y=sin(x)
I want the sine curve's linewidth is 2.

Réponse acceptée

uu tsi
uu tsi le 7 Oct 2016
use linewidth
x=linspace(0,2*pi);
y=sin(x);
plot(x, y, 'linewidth',2)

Plus de réponses (1)

Adam
Adam le 7 Oct 2016
Modifié(e) : Adam le 7 Oct 2016
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
bainhome le 7 Oct 2016
sorry buddy, uu tsi is my friend, he ask me to ask him a question, just for the purpose of testing this new Q&A stuff, so i accept his answer, obviously your answer is great too. anyway, hope you don't mind.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Specifying Target for Graphics Output dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by