تبلیغات اینستاگرام
ads.fileon.ir

کد رنگ نارنجی در متلب

نویسنده : مینا علی زاده | زمان انتشار : 12 اسفند 1400 ساعت 17:14

کد رنگ های RGB در نرم افزار متلب

کد رنگ های RGB در نرم افزار متلب

در نرم افزار متلب (Matlab)، گاهی اوقات نیاز است تا کد رنگ های RGB را بدانیم. لیست زیر این کد رنگ ها را نشان می دهد:

آبی یا B

سبز یا G

قرمز یا R

رنگ

سیاه

1

1

1

سفید

1

قرمز

1

سبز

1

آبی

1

1

زرد

1

1

ارغوانی

1

1

فیروزه ای

0.5

0.5

0.5

خاکستری

0.5

قرمز تیره

0.4

0.62

1

مسی

0.8

0.4

0.6

کبود

در هنگام رسم نمودار، کافی است از دستور color کد رنگ مورد نظر را بنویسیم. به مثال زیر توجه کنید:

x=linspace(0,2*pi,100);

y=sin(x);

plot(x,y, 'color' ,[1 0.62 0.4])

سه‌شنبه 7 اردیبهشت 1395 ساعت 11:54 ق.ظ

"; window.location.href = window.location.href.split("#")[0] + "#comment-form-box"; } blogsky.ajax.onCommentSubmitFailure = function (data) { document.getElementById("comment-submit-button").classList.remove("loading"); document.getElementById("comment-submit-button").removeAttribute("disabled"); document.getElementById("comment-errors-message").innerHTML = data.error; } blogsky.ajax.onCommentRateBegin = function (data) { document.getElementById("comment-rate-plus-button-" + data.id).setAttribute("disabled", "disabled"); document.getElementById("comment-rate-minus-button-" + data.id).setAttribute("disabled", "disabled"); document.getElementById("comment-rate-wrapper-" + data.id).classList.add("loading"); switch (data.rateType) { case "plus": var commentRatePlus = document.getElementById("comment-rate-plus-count-" + data.id); commentRatePlus.innerHTML = parseInt(commentRatePlus.innerHTML) + 1; break; case "minus": var commentMinusPlus = document.getElementById("comment-rate-minus-count-" + data.id); commentMinusPlus.innerHTML = parseInt(commentMinusPlus.innerHTML) + 1; break; } } blogsky.ajax.onCommentRateFailure = function (data) { switch (data.rateType) { case "plus": var commentRatePlus = document.getElementById("comment-rate-plus-count-" + data.id); commentRatePlus.innerHTML = parseInt(commentRatePlus.innerHTML) - 1; break; case "minus": var commentMinusPlus = document.getElementById("comment-rate-minus-count-" + data.id); commentMinusPlus.innerHTML = parseInt(commentMinusPlus.innerHTML) - 1; break; } var commentRateErrorMessage = document.getElementById("comment-rate-error-message-" + data.id); commentRateErrorMessage.innerHTML = data.error; commentRateErrorMessage.style.display = "block"; setTimeout(function () { commentRateErrorMessage.style.display = "none"; }, 3000); } blogsky.ajax.onCommentRateComplete = function (data) { document.getElementById("comment-rate-plus-button-" + data.id).removeAttribute("disabled"); document.getElementById("comment-rate-minus-button-" + data.id).removeAttribute("disabled"); document.getElementById("comment-rate-wrapper-" + data.id).classList.remove("loading"); }