Calling a function using a string generated earlier in code.

조회 수: 2 (최근 30일)
Ben Clark
Ben Clark 2012년 7월 26일
What I want to do is call a function using a string that was generated earlier in the code. The initial function takes user input to create the string for the internal function. Here is what I have so far:
function [Cmdty2Pull]=refresh_AllComdtyCloses(Cmdty2Pull)
LastPullTable = [Cmdty2Pull '_History'];
I want to then do the following
irow = length(LastPullTable(:,1)
where irow is set to length of cell array CL_History if the user inputs CL.
Is there an easy way to do this that I just dont know about?
  댓글 수: 3
Ben Clark
Ben Clark 2012년 7월 26일
I currently have 3 cell arrays using this naming convention but moving forward there may be more added.
It will most likely be called in a few other places in the code.
Hope this answers your questions.
Jonathan
Jonathan 2012년 7월 26일
Let me know if the solution below works.
Have a good one, Ben!

댓글을 달려면 로그인하십시오.

채택된 답변

Jonathan
Jonathan 2012년 7월 26일
Here is a solution that will work depending on how many different cells you're talking about.
Define the cell (in any function) like this:
setappdata(0,'CL_History',{CELLDATA HERE});
and call it like this:
irow = length(getappdata(0,LastPullTable));
The problem is (how I see it) that you have to be using some sort function to reference a string or else "length" will just give you the length of the string.
This solution will work, but it may not be efficient or reasonable depending on what kind of data you're dealing with and the amount present.
  댓글 수: 4
Ben Clark
Ben Clark 2012년 7월 26일
I see, the examples helped a ton. Much thanks.
Jonathan
Jonathan 2012년 7월 26일
Happy to help! Maybe someone else has a better method of solving, but I've fallen in love with the setappdata command over the last few days!
You could also create an m-file for each cell and use feval:
function [output] = CL_History()
CL_History = {cell};
output = length(CL_History);
and in your original function:
irow = feval(LastPullTable);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by