GNU Emacs Color matrix

버전 1.0.0.0 (9.41 KB) 작성자: T. U.
Two MATLAB .mat files include GNU Emacs Color name and their RGB (256) array.
다운로드 수: 825
업데이트 날짜: 2016/3/30

라이선스 보기

Two MATLAB .mat files includ GNU Emacs Color name and their RGB (256) array.
EmacsColor is a structure size with 548, each field corresponds color name and contains 1x3 array such as

EmacsColor =
snow: [1 0.980392156862745 0.980392156862745]
ghostwhite: [0.972549019607843 0.972549019607843 1]
whitesmoke: [0.960784313725490 0.960784313725490 0.960784313725490]
gainsboro: [0.862745098039216 0.862745098039216 0.862745098039216]
floralwhite: [1 0.980392156862745 0.941176470588235]
oldlace: [0.992156862745098 0.960784313725490 0.901960784313726]
linen: [0.980392156862745 0.941176470588235 0.901960784313726]

EmacsColorMat is a 548x3 array with Emacs Color code.

You may use EmacsColor and/or EmacsColorMat

load EmacsColor;
x = [1:10];
y = x.^2 ;
plot(x,y,'Color',EmacsColor.aquamarine2);

load EmacsColorMat;
plot(x,y,'Color',EmacsColorMat(321,:) );

You can see Emacs Color name at
http://homepage1.nifty.com/blankspace/emacs/emacs_rgb.html

인용 양식

T. U. (2024). GNU Emacs Color matrix (https://www.mathworks.com/matlabcentral/fileexchange/22939-gnu-emacs-color-matrix), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2008b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 File Operations에 대해 자세히 알아보기
태그 태그 추가

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

just update for license