Where can I find the MATLAB logo in my MATLAB installation?
88 ビュー (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
採用された回答
jiahua sheng
2020 年 11 月 12 日
I use 2020b and its location is /usr/local/MATLAB/R2020b/bin/glnxa64/cef_resources/matlab_icon.png.
0 件のコメント
その他の回答 (2 件)
Samir Mitha
2020 年 8 月 17 日
The matlab icon can be found in:
bin/glnxa64/matlab_icon.png
from your matlab installation folder.
1 件のコメント
RAMBOD RAHMANI
2022 年 3 月 19 日
I found it in
bin/glnxa64/cef_resources/matlab_icon.png
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
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!