Is there a way to pass in a matrix of color values (n*3) into plot in matlab

조회 수: 1 (최근 30일)
Sohrab Salimian
Sohrab Salimian 2020년 2월 18일
답변: KSSV 2020년 2월 18일
Can i pass in a matrix of color values into matlab plot function, such that it colors each of my line plots a different color in one go instead of using a for loop.

답변 (1개)

KSSV
KSSV 2020년 2월 18일
You need not use a loop..you can make your data a matrix and use plot.
X = repmat(1:10,10,1) ;
Y = rand(10) ;
plot(X',Y')

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by