MATLAB 預設色序

Ammar Ali 2021年10月2日 2021年7月4日
MATLAB 預設色序

本教程將討論如何使用 MATLAB 中的 get() 函式獲取預設顏色順序。

MATLAB 中的預設顏色順序

MATLAB 中的預設顏色順序因 Matlab 版本而異。要獲取 MATLAB 版本的色序,你可以使用 get() 函式獲取 RGB 中的色序。請參考下面的示例程式碼。

color_order = get(gca,'colororder')

使用上面的程式碼,你將看到預設顏色順序的 RGB 三元組值,你還可以使用這些 RGB 值繪製一條線來檢查顏色。顏色順序意味著如果你繪製一個變數,MATLAB 會給它一個預設顏色,這將是你使用 get() 函式獲得的第一個 RGB 三元組值。如果繪圖超過色序的限制,顏色將重複。

Author: Ammar Ali
Ammar Ali avatar Ammar Ali avatar

Hello! I am Ammar Ali, a programmer here to learn from experience, people, and docs, and create interesting and useful programming content. I mostly create content about Python, Matlab, and Microcontrollers like Arduino and PIC.

LinkedIn Facebook

相關文章 - MATLAB Plot