我一直在使用Origen parameters features,并成功地动态创建了单维参数集:
pcie.define_params "pcie_demphasis_#{a}_logvar_#{v}".to_sym, inherit: :logvar_default do |p|
pcie.pcie_tx_p_pins.each_with_index do |(pin_id, pin_obj), i|
p.tm.send("Variable#{i}.Name=", "var name1")
end
end
是否可以将这些发送链接在一起?从Excel导入数据时,我需要动态定义4D数据集。
thx
答案 0 :(得分:1)
这行不通吗,还是您还有其他意思?
p.tm.send("blah").send("blah2").send("blah3=", "blah3_val")