How to use gradient?
조회 수: 37 (최근 30일)
이전 댓글 표시
what is the problem with the following code?
f=input('enter function: ','s')
[DX,DY] = -gradient(f);
f = str2func(['@(x,y)' vectorize(f)]);
[DX,DY] = -gradient(f);
hold on
quiver(X,Y,DX,DY)
hold off
I get the following errors:
Error using zeros CLASSNAME input must be a valid numeric or logical class name.
Error in gradient (line 56) g = zeros(size(f),class(f)); % case of singleton dimension
댓글 수: 2
채택된 답변
Star Strider
2017년 5월 13일
편집: Star Strider
2017년 5월 13일
You have to evaluate ‘f’ to calculate the gradient.
The Code —
f = 'log(x^2+y^2)';
f = str2func(['@(x,y)' vectorize(f)]);
x = -10:10;
y = x';
[DX,DY] = gradient(-f(x,y));
quiver(x,y,DX,DY,0); % The ‘0’ Argument Turns Off Arrow Scaling
The Plot —
EDIT — Added plot.
댓글 수: 7
Star Strider
2017년 5월 15일
Consider using the symvar function (in core MATLAB as well as the Symbolic Math Toolbox) to determine the variables in an expression. You can then use the size or length of that result with appropriate if or similar blocks to calculate the appropriate gradient of your function.
Example —
f = 'log(x^2+y^2)';
vars1 = symvar(f)
f = str2func(['@(x,y)' vectorize(f)]);
syms f(x,y) x y
f(x,y) = x^4 + tan(x);
vars2 = symvar(f)
vars1 =
2×1 cell array
'x'
'y'
vars2 =
x
Note that symvar will not work on function handles, so you must put it before your str2func call for it to work.
추가 답변 (1개)
Stephen23
2017년 5월 13일
편집: Stephen23
2017년 5월 13일
You need to start reading the MATLAB documentation, because guessing how to use MATLAB will not be an efficient use of your time. MATLAB has very accessible documentation: learn to use it:
When you actually open the gradient documentation and read the input description, it clearly describes the first argument as "F — Input array vector | matrix | multidimensional array"
So far you have tried two different inputs, neither of which are numeric arrays:
f=input('enter function: ','s')
[DX,DY] = -gradient(f); % <- here the input is a string
f = str2func(['@(x,y)' vectorize(f)]);
[DX,DY] = -gradient(f); % <- here the input is a function handle
The gradient documentation does not state that it accepts strings or function handles. It accepts numeric data only. In fact, the subtitle at the very top of the page states quite clearly "Numerical gradient", and it does not state symbolic or functional gradient.
Perhaps you were trying to do something like this (note that this is a numeric calculation):
>> [X,Y] = meshgrid(0:9);
>> Z = X.^2 + sqrt(Y); % function of X and Y
>> [DX,DY] = gradient(Z); % input numeric array to gradient
>> quiver(X,Y,DX,DY)
댓글 수: 2
Stephen23
2017년 5월 14일
@geometry geometry: use str2func to generate a function handle from the input string. I am sure that you can find and read the str2func documentation yourself.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!