how can i use my function directly on a array without having x and y?
Afficher commentaires plus anciens
the code is:
function img(x,y,a)
imagesc(x,y,a);
set(gca,'YDir','normal');
impixelinfo;
end
command windows:
a=rand(2,3)
a =
0.5078 0.3828 0.7304
0.3943 0.8834 0.7662
>> img(a)
Not enough input arguments.
hello guys
i am trying to creat a small function similar to imagesc by adding more option to the original imagesc function,
however i can't use my img function to a array directly
exemple, if i try to do img(a) and a= rand(2,3) i will get a error "Not enough input arguments."
any idea how can i use my function directly on a array without having x and y?
Réponse acceptée
Plus de réponses (1)
Max Heimann
le 14 Jan 2022
The function you defined has 3 arguments. x,y and a.
function img(x,y,a)
imagesc(x,y,a);
set(gca,'YDir','normal');
impixelinfo;
end
Yet you call it with just one argument "a".
a=rand(2,3)
a =
0.5078 0.3828 0.7304
0.3943 0.8834 0.7662
>> img(a)
The error message is pretty clear here. Where are the arguments x and y supposed to come from if you dont pass them as function arguments. Either somehow calculate the appropriate values in your function, hardcode them there or pass them as arguments.
3 commentaires
Rabih Sokhen
le 18 Jan 2022
Max Heimann
le 18 Jan 2022
The Solution provided by DGM should do exactly that. Did you get an error when trying it?
varargin stands for Variable-length input argument list in matlab. It allows you to pass any number of arguments to your function and they will be available in the function as a cell array. You can access them with
varargin{1}, varargin{2}, ...
Or simply
varargin{:}
If you want all of the arguments at once.
In the solution provided by DGM you should be able to call your function with either a or a,x,y and the arguments will be passed to imagesc in the same order.
Rabih Sokhen
le 18 Jan 2022
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




