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

2 ビュー (過去 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 Center および File ExchangeColormaps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by