HI friends.I have a question:what is the difference between imshow & imagesc in this code and why the time reduce??
조회 수: 2 (최근 30일)
이전 댓글 표시
clear all;
% close all;
clc
tic
for n=1:100
disp(n)
for i=1:50
for j=1:50
matrix(5*i-4:5*i ,5*j-4:5*j)=rand;
% matrix(10*i-9:10*i ,10*j-9:10*j)=rand;
% matrix(4*i-3:4*i ,4*j-3:4*j)=rand;
end
end
imshow(matrix);
imagesc(matrix);
% colormap(gray)
% colorbar
% matrix=100*floor(5*matrix);
% matrix=83*matrix;
randmatrix{n}=matrix;
% matrix=randmat{n};
% imshow(matrix)
% matrix=floor(4*matrix);
% matrix=83*matrix;
% randmatrix{n}=matrix;
end
toc
댓글 수: 1
Guillaume
2018년 5월 1일
There two different functions, so I wouldn't expect them to take the same time.
Isn't your question answered simply by looking at the documentation?
I would recommend you reduce the clutter in question by removing all these useless comments.
답변 (1개)
sloppydisk
2018년 5월 1일
편집: Guillaume
2018년 5월 1일
This was answered here: https://mathworks.com/matlabcentral/answers/72130-what-s-the-difference-between-imagesc-and-imshow .
Guillaume's edit: fixed link
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Orange에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!