Making a generalized script, very new MATLAB user!
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi, I am a very new to MATLAB and I used python and C a lot for scientific computing. My colleagues encouraged me to get familiar with MATLAB and its powerful symbolic functions, so I have started using it. Anyway, I made a script for some arbitrary purpose and just thinking how to make a generalized one. Here is my code:
syms x1 x2 x3 a;
f=sym('x1^2+x2^2');
point=[1,1];
variable1 = [diff(f,x1),diff(f,x2)];
variable10 = double(subs(variable1,[x1,x2],point));
d=variable1;
variable3=subs(f,[x1,x2],point+a*d);
b=12.56
variable4 = double(subs(variable3,[x1,x2,a],[point,b]));
Here I have written f of only two variables and wish to make it generalized for n variable. Is there any method exists in MATLAB how can I do this? Any ideas or suggestions? Any help much appreciated. Thanks.
댓글 수: 0
답변 (2개)
Walter Roberson
2013년 10월 31일
You can use matlabFunction() together with cell array expansion and num2cell
ThisCell = {'%08f', pi};
fprintf(ThisCell{:})
is equivalent to
fprintf('%08f', pi)
댓글 수: 0
sixwwwwww
2013년 10월 31일
Dear Andrew, one way to generalize the code is as follows:
syms a
n = 20; % Number of variables for function f
x = sym('x%d', [1 n]);
f = sum(x.^2);
point = ones(1, n);
variable1 = [];
for i = 1:n
variable1 = [variable1 diff(f, x(i))];
end
variable10 = double(subs(variable1,x,point));
d = variable1;
variable3 = subs(f, x ,point + a * d);
b=12.56;
variable4 = double(subs(variable3,[x, a],[point, b]));
I hope it helps. Good luck!
댓글 수: 4
sixwwwwww
2013년 10월 31일
Basically what you are doing is as follow:
d = -1 * variable1;
Now let's look at it. What is variable1? It is as follows:
variable1 = [2*x1, 2*x2, 2*x3, 2*x4]
So d becomes:
d = -1 * variable1 = [-2*x1, -2*x2, -2*x3, -2*x4]
Now we compute point + a * d
point = [1, 1, 1, 1];
point + a * d = [1 - 2*a*x1, 1 - 2*a*x2, 1 - 2*a*x3, 1 - 2*a*x4]
Now when you try evaluate
variable3 = subs(f, x ,point + a * d)
then make following substitutions:
x1 --> 1 - 2*a*x1
...
...
x4 --> 1 - 2*a*x4
Due to this reason variable 3 is function of a, x1,...,x4. Now I hope you can understand the reason. Now if you have some values for x1...x4 and put them in variable3 then it will become function of just 'a'.
I hope it helps you figure out the problem. Good luck!
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!