call matrix in function
3 次查看(过去 30 天)
显示 更早的评论
Hello I want to call special matrix that I created before via function only by name of matrix. for example I create
z1=[12 15 16;31 65 79;20 22 34]
I write this function:
function[f]= ave1(z1,z2)
z1=input('input z1 matrix: ')
[n1,n2]=size(z1);
n3=n1*n2
[n4,n5]=size(z2);
z2=input('input z2 matrix: ');
n6=n4*n5
B=reshape(z1,n3,1);
C=reshape(z2,n6n1);
f=[A(:);B(:)]
end
but when I run it in Matlab it can't khnow that. How can introduce or call my matrix in function only by name of matrix? Thank you
0 个评论
采纳的回答
the cyclist
2014-6-23
编辑:the cyclist
2014-6-23
The reason you get this error is that z1 doesn't exist inside the function at the time of the input command.
The only way I can think of to do this is to enter
evalin('base','z1')
after the input prompt.
doc evalin
for details of this function.
Your problem is a bit odd to me, though. If you already know what z1 is before you call the function, why are you asking the user for it? Why not just pass it as an argument?
5 个评论
Joseph Cheng
2014-6-24
It doesn't look like there is. There is a bit of information from MATLAB on this topic http://www.mathworks.com/help/matlab/matlab_prog/share-data-between-workspaces.html and it shows evalin as what you are looking for.
Is it possible to rewrite portions of your code such that the input portions are before you call ave1(z1,z2)?
example:
%section of code before you need to call ave1()
%z1=[whatever matrix] and z2=[whatever matrix] matrix defined.
z1name =input('input name of z1 matrix: ')
z1name =input('input name of z1 matrix: ')
%then
f=eval(['ave1(' z1name ',' z2name ')']);
you probably want to put some check to verify that the user input of variable names are located in the workspace.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!