how can i use my function directly on a array without having x and y?

1 次查看(过去 30 天)
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?

采纳的回答

DGM
DGM 2022-1-14
You don't need to specify x and y when calling imagesc().
If you handle the input arguments like this:
A = imread('cameraman.tif');
img([0 1],[0 1],A)
img(A)
function img(varargin)
imagesc(varargin{:});
set(gca,'YDir','normal');
impixelinfo; % this should work fine, but won't show up in the web-figure
end
then you can call it either way.
  9 个评论
DGM
DGM 2022-1-18
As I mentioned in the other question, I don't think that the data brush has any means of specifying which objects it selects. My attempts to disable the interaction by setting properties of the mesh object did not change the behavior. The only other alternative I could think of was to use the axes grid instead of mesh(), which carries its own problems.

请先登录,再进行评论。

更多回答(1 个)

Max Heimann
Max Heimann 2022-1-14
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 个评论
Max Heimann
Max Heimann 2022-1-18
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Visual Exploration 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by