MATLAB RGB 三元組

Ammar Ali 2021年4月29日
MATLAB RGB 三元組

在本教程中,我們將討論如何在 MATLAB 中使用 RGB 顏色設定圖的顏色。

在 MATLAB 中使用 RGB 顏色設定圖的顏色

在 RGB 中,共有三種主要顏色:紅色、綠色和藍色,其值範圍為 0 到 1。在 MATLAB 中,你可以使用 RGB 顏色值定義繪圖顏色。要使用 RGB 顏色,必須在繪圖功能中使用屬性 Color,然後在該屬性之後,可以在向量中新增 RGB 三元組的任何值。例如,讓我們將 RGB 顏色新增到一行。請參見下面的程式碼。

l = 1:100;
plot(l,l,'Color',[.1 .1 .9],'LineWidth',10)
hold on
plot(2*l,l,'Color',[.1 1 .1],'LineWidth',10)
plot(3*l,l,'Color',[1 .1 .1],'LineWidth',10)

輸出:

RGB 三色線顏色

在上面的程式碼中,我們繪製了三行具有不同 RGB 顏色的線。你可以根據需要在 0 到 1 之間設定顏色值。

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