Where can I find the MATLAB logo in my MATLAB installation?

조회 수: 88 (최근 30일)
Jerry George
Jerry George 2018년 3월 6일
답변: Image Analyst 2022년 3월 19일
I wanted to create a desktop launcher for MATLAB in Debian. So, is there a logo available along with the installation, rather than downloading it from an external source?

채택된 답변

jiahua sheng
jiahua sheng 2020년 11월 12일
I use 2020b and its location is /usr/local/MATLAB/R2020b/bin/glnxa64/cef_resources/matlab_icon.png.

추가 답변 (2개)

Samir Mitha
Samir Mitha 2020년 8월 17일
The matlab icon can be found in:
bin/glnxa64/matlab_icon.png
from your matlab installation folder.

Image Analyst
Image Analyst 2022년 3월 19일
You can create a PNG file of the MATLAB logo yourself like this:
% Demo to save the MATLAB logo as a PNG image file.
logo
exportgraphics(gcf, 'MATLAB_logo.png')
% Read it back in to verify what it looks like
rgbImage = imread('MATLAB_logo.png');
% If you want the white turned back to black, do this:
whiteMask = mean(rgbImage, 3) >= 175;
% Mask the image using bsxfun() function to multiply the mask by each channel individually.
rgbImage = bsxfun(@times, rgbImage, cast(~whiteMask, 'like', rgbImage));
figure;
imshow(rgbImage);
impixelinfo

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by