i want to create a function that contains table and produces an output

1 次查看(过去 30 天)
i want to create a function that contains table and produces an output after comparing the variable name with the value present in the table
example
function name is compare
compare(a)
it produces 23
as it will be defined in function that
a=23
b=24 and so on

采纳的回答

Stephen23
Stephen23 2014-10-1
编辑:Stephen23 2014-10-1
Does it need to be a function ? Does it really need to contain a table ?
Assuming that the "name" is a string (if it isn't then you can use inputname ), then there are several ways you could achieve this:
  • given then names in your example 'a' and 'b', this will work for individual characters from 'a' to 'z':
name_string - 'a' + 23
this can easily be defined as a function:
>>fun = @(s) s-'a'+23;
>>fun('b')
ans = 24
  • for more complicated name strings you could use a struct to achieve this functionality:
>>A = struct('aa',23,'bb',24);
>>A.('bb')
ans = 24
You might also like to read about double and strcmp .

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by