Bonjour à tous,
J'aimerais ouvrir trois matrices avec imshow :
>> R = [0.5 0 1; 0 1 0; 1 0 0.5];
>> G = [0.5 0.6 0; 0.6 0 0.6; 0 0.6 0.5];
>> B = [0.5 1 0; 1 0 1; 0 1 0.5];
>> imshow(R,G,B,'InitialMagnifica tion','fit');
Mais je n'y arrive pas. Quelle est mon erreur ?
Matlab m'affiche :
??? Error using ==> iptchecknargin at 77
Function IMAGEDISPLAYPARSEINPUTS expected at most 2 input arguments
but was called instead with 3 input arguments.
Error in ==> imageDisplayParseInputs at 133
iptchecknargin(0,2,num_args,mf ilename);
Error in ==> imshow at 173
[common_args,specific_args] = ...
-----