how to use getvarname

15 次查看(过去 30 天)
Luca Re
Luca Re 2023-12-22
评论: Stephen23 2023-12-23
PtnBaseSA2(1,:)={"TEST"}
PtnBaseSA2 = 1×1 cell array
{["TEST"]}
f="PtnBaseSA2";
f1=genvarname(f)
f1 = "PtnBaseSA2"
f1(1)
ans = "PtnBaseSA2"
  10 个评论
Luca Re
Luca Re 2023-12-22
编辑:Luca Re 2023-12-22
ok I'll try with an example to make you understand what I have to do:
I have a text in AreaText...
The words in brackets are automatically captured
Exampe:
AreaText: ....xxx....PtnBaseSA2(32)..text...PtnB3(12)..
I catch PtnBaseSA2 and PtnB3 and i display in other AreaText the content present in the.txt file at that index
Stephen23
Stephen23 2023-12-23
"I have a text in AreaText..."
What is "AREATEXT? That term exist in your text file.
"...the content present in the.txt file"
Which looks very much like an M-file: why not just RUN it?
"Exampe: AreaText: ....xxx....PtnBaseSA2(32)..text...PtnB3(12).."
That is not an example: it is invalid MATLAB sytnax and I cannot run it.
"I catch PtnBaseSA2 and PtnB3 and i display in other AreaText the content present in the.txt file at that index"
If you are just trying to display file content then you definitely do NOT need to dynamically access variable names.
Please upload a sample data file. Please explain which data from that file that you want to display.

请先登录,再进行评论。

采纳的回答

Matt J
Matt J 2023-12-22
编辑:Matt J 2023-12-22
PtnBaseSA2 is an arraycell with many elements. I find the word "PtnBaseSA2" in some text and display some array indices of this arraycell.
If that's the task, then genvarname has nothing to do with it. In situations like that, you would make your words into struct fields, and use dynamic field indexing, like below. You can also do similar things with tables.
S.PtnBaseSA2={10,20,30,40,50,60}
S = struct with fields:
PtnBaseSA2: {[10] [20] [30] [40] [50] [60]}
indices=[2,5];
f="PtnBaseSA2";
S.(f)(indices)
ans = 1×2 cell array
{[20]} {[50]}

更多回答(2 个)

Ganesh
Ganesh 2023-12-22
编辑:Ganesh 2023-12-22
Firstly, I see that there is an inconsistency between the question and the code you have written. You have asked about the usage of "getvarname" but have mentioned "genvarname" in your code.
Secondly, I assume that when you performed the operation f1(1), you expect the result to be "TEST". This is not bound to happen as you can try viewing the datatype of f1 and you will see it is a string.
Lastly, genvarname is a function that would generate a valid variable name as a string. The reason for using it would be to ensure that new valid variables can be made dynamically. This is usually implemented by using the "eval()" function. However, I advise you to be aware of the risks attached with using the "eval()" function.
Please refer to Example 2 of the following documentation to see how the function is used practically:
  2 个评论
Luca Re
Luca Re 2023-12-22
PtnBaseSA2(1,:)={"TEST"}
PtnBaseSA2 = 1×1 cell array
{["TEST"]}
f="PtnBaseSA2";
f1=getvarname(f)
Unrecognized function or variable 'getvarname'.
Ganesh
Ganesh 2023-12-22
f="2PtnBaseSA 2"; %Incorrect variable name
f1 = genvarname(f)
f1 = "x2PtnBaseSA2"
eval([f1 + '(1,:)={"TEST"}'])
x2PtnBaseSA2 = 1×1 cell array
{["TEST"]}
eval([f1])
x2PtnBaseSA2 = 1×1 cell array
{["TEST"]}

请先登录,再进行评论。


Image Analyst
Image Analyst 2023-12-22
I doubt your program requires it, unless you wrote it poorly. The FAQ shows you how to do this unwise operation and tells you why you should not do it: https://matlab.fandom.com/wiki/FAQ#How_can_I_create_variables_A1,_A2,...,_A10_in_a_loop?

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by