필터 지우기
필터 지우기

Writing a one line programme to show that an equation equals to the answer shown.

조회 수: 1 (최근 30일)
How can i write a one line programme to show that sqrt(4) = 2 .
solve('sqrt(4)')
it says :
Error using solve>getEqns (line 418)
List of equations must not be empty.
Error in solve (line 226)
[eqns,vars,options] = getEqns(varargin{:});

답변 (1개)

John D'Errico
John D'Errico 2019년 3월 19일
Homework, but you did make an effort. Does this not show what you need to show?
sqrt(4)
ans =
2
Or this?
sqrt(4) == 2
ans =
logical
1
You were asked to show that statement to be true. Not to solve for the square root. Were you to try to do that, then you should arguably get BOTH branches of the square root. In one line, perhaps this...
solve(str2sym('x^2==4'))
ans =
-2
2
But I will argue that is not what was requested.

카테고리

Help CenterFile Exchange에서 Assumptions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by