Breaking up a long line of plot code
조회 수: 33 (최근 30일)
이전 댓글 표시
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!
댓글 수: 0
채택된 답변
Jan
2021년 3월 28일
편집: Jan
2021년 3월 28일
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');
See: https://www.mathworks.com/help/matlab/matlab_prog/continue-long-statements-on-multiple-lines.html
You can find such information by asking an internet search engine for "Matlab line continuation".
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!