How can I substitute a variable given by a struct?

3 次查看(过去 30 天)
Hey, everyone. I'm trying to solve an optimization problem without the Optimization toolbox. I already have the roots from the equation (by "solve"), it gives to me an struct array, with fields x1, x2... xn, my problem is I already have an x1, x2... xn. I've been trying by so many ways but simply I couldn't solve it, I'm looking to asign the value of the fields to the syms variables and then apply "subs". Code below.
Thanks in advance for help. :)
clear; close all; clc;
var= input ('Dimention of domain');
syms x [1 var];
func= input ('Enter the function, i.e [x1+x2+...+xn]: \n');
y=[];
for s=x(1:end)
dp= diff (func, [s]);
y=[y, dp];
end
pc=solve (y);
pucr= fieldnames (pc);
for i= 1:numel(pucr)
vals(i, 1)= getfield(pc,pucr{i});
end
Hf=hessian (func);
Hff= subs (Hf);
  2 个评论
darova
darova 2020-5-2
Try this
for i= 1:numel(pucr)
v = getfield(pc,pucr{i});
v1 = subs(v,oldv, newv);
vals(i, 1) = doulbe(v1);
end
Abner Ojeda
Abner Ojeda 2020-5-3
Thanks for taking your time in answer my question, it doesn't work, but I appreciate your answer.

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2020-5-2
subs(ExpressionToSubstituteInto, pc)
When pc is a struct with field names, then the corresponding variable names will have the appropriate values substituted.
Note: this will not work if any of the field names contain an empty value, even if the corresponding variable is not used in the expression. In particular, if you happened to do
pc = solve(y, 'returnconditions', true)
then pc.parameters would be created even if no parameters were generated, and with pc.parameters being empty, subs() with pc would fail. You can get it working by removing the empty field from the struct.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by