Breaking up a long line of plot code

33 vues (au cours des 30 derniers jours)
Molly Autery
Molly Autery le 28 Mar 2021
Commenté : Molly Autery le 28 Mar 2021
How can I break up a long line of code into multiple lines? I don't want to break up my plot, I just want to make this long line of code easier to read and edit. The ultimate goal is to have a plot that displays 4 sets of data on the same x-y axis, using different shapes with different colors for each data set.
figure
plot(Dates, PW_4anom,' bd', 'MarkerEdgeColor', 'k', 'MarkerFaceColor', 'r', Dates, MW1_78anom, 'rs', 'MarkerEdgeColor', 'k'...
The code goes on to specify two more data sets. How can I write this code in multiple lines instead of one long line? Or is this the only way with the method I'm using?
I appreciate any and all help, I am totally new to Matlab!

Réponse acceptée

Jan
Jan le 28 Mar 2021
Modifié(e) : Jan le 28 Mar 2021
The marker for the line continuation in Matlab is "..." :
figure
plot(Dates, PW_4anom, ' bd', ...
'MarkerEdgeColor', 'k', 'MarkerFaceColor', 'r', ...
Dates, MW1_78anom, 'rs', 'MarkerEdgeColor', 'k');
You can find such information by asking an internet search engine for "Matlab line continuation".
  1 commentaire
Molly Autery
Molly Autery le 28 Mar 2021
Thank you! I had tried using '...' but I kept getting errors. I just tried using 'hold on' with new plot commands and it seems to work also.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Line Plots 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