Matlab 中的动态赋值

发布于 2024-12-02 04:01:44 字数 717 浏览 2 评论 0原文

我有一个 cellarray ,其值用于初始化相应的结构。

cellarr = {'NI' ; 'EQ' ; 'TA' } ;
defstr = struct('Raw', '-1')    ;

for i = 1:size(cellarr,1)
    eval([cellarr{i,1} '= defstr;'])  %Yes,I know eval is bad!Any other approach?
end

然后将新值填充到 Raw 字段中。

dataCell = [] ;
for i=1:size(cellarr,1)
    rawCell = [cellarr{i} '.Raw'] ;
    dataCell = strcat(dataCell, ', ', rawCell) ;
end
dataCell(1) = [] ;

DESIRED STATEMENT NOW  --> [NI.Raw,Eq.Raw,TA.Raw] = filldata()

function[a1,a2,a3] =  filldata(), a1 = 1 ; a2 = 2 ; a3 = 3 ; end

即使使用eval,我也无法执行所需的语句。将感谢您的帮助。 filldata 输出计数将与所需语句 的 LHS 输出计数相匹配。谢谢。

I have a cellarray whose values are used to initialize corresponding structs.

cellarr = {'NI' ; 'EQ' ; 'TA' } ;
defstr = struct('Raw', '-1')    ;

for i = 1:size(cellarr,1)
    eval([cellarr{i,1} '= defstr;'])  %Yes,I know eval is bad!Any other approach?
end

New values are then filled into the Raw field.

dataCell = [] ;
for i=1:size(cellarr,1)
    rawCell = [cellarr{i} '.Raw'] ;
    dataCell = strcat(dataCell, ', ', rawCell) ;
end
dataCell(1) = [] ;

DESIRED STATEMENT NOW  --> [NI.Raw,Eq.Raw,TA.Raw] = filldata()

function[a1,a2,a3] =  filldata(), a1 = 1 ; a2 = 2 ; a3 = 3 ; end

I am not able to execute the desired statement, even by using eval. Shall appreciate your help. filldata output count would match that of LHS of desired statement. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

·深蓝 2024-12-09 04:01:44

这是 EVAL 的一个可能的解决方案:

%# build and eval the string: [NI.Raw,Eq.Raw,TA.Raw] = filldata()
str = sprintf('%s.Raw,',cellarr{:});
str = sprintf('[%s] = filldata()', str(1:end-1));
eval(str);

与任何其他解释语言一样,使用 EVAL 不是最佳实践(但您似乎已经知道这一点)。
除非您特别需要其名称只能在运行时确定的变量,否则我将使用元胞数组或结构数组(取决于您的需要):

N = 3;
result = cell(N,1);
[result{:}] = filldata();

%# now you can access the data as:
result{1}
result{2}
%#...

Here is a possible solution for EVAL:

%# build and eval the string: [NI.Raw,Eq.Raw,TA.Raw] = filldata()
str = sprintf('%s.Raw,',cellarr{:});
str = sprintf('[%s] = filldata()', str(1:end-1));
eval(str);

As in any other interpreted language, the use of EVAL is not best practice (but you seem to already know that).
Unless you specifically need to have variables whose names can only be determined at runtime, I would use cell-arrays or array of structures instead (depending on your needs):

N = 3;
result = cell(N,1);
[result{:}] = filldata();

%# now you can access the data as:
result{1}
result{2}
%#...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文