How to avoid introducing abs( ) when simplifying expressions using the symbolic toolbox ?

조회 수: 11 (최근 30일)
%% Problem 6.4
syms x y x_dot y_dot
assume(x,'real');
assume(y, 'real');
assume(x_dot, 'real');
assume(y_dot, 'real');
%% Newtonian:
r_bar_cart = [x ; -log(cos(x)); 0];
v_bar_cart = x_dot*diff(r_bar_cart,x);
norm_v = sqrt(sum(v_bar_cart.^2));%magnitude of velocity
e_t_cap =simplify((v_bar_cart/norm_v),'Criterion','preferReal');
e_n = simplify(x_dot*diff(e_t_cap,x),'Criterion','preferReal');
I've declared the variables as real and set the simplification criterion to prefer real arguments. Still ending up with abs() in the expression for e_t_cap.

답변 (2개)

David Goodmanson
David Goodmanson 2021년 12월 2일
편집: David Goodmanson 2021년 12월 2일
Hello Prajwal,
norm_v = abs(xdot)/abs(cos(x))
so it does fundamentally depend on abs. Since norm_v is being divided into quantites such as v_bar_cart that do not involve abs, there is no getting around the fact that the final results depend directly on abs. What kind of result are you looking for instead?
One thing that comes to mind is, e.g. using sqrt(xdot^2)) in place of abs(x) (with the assumption that sqrt picks the positive root by default). But that's no improvement unless you are not allowed to use abs for some reason, and I have doubts that you could coerce the symbolic toolbox into doing that.

Walter Roberson
Walter Roberson 2021년 12월 2일
%% Problem 6.4
syms x y x_dot y_dot
assume(x,'real');
assume(y, 'real');
assume(x_dot, 'real');
assume(y_dot, 'real');
%% Newtonian:
r_bar_cart = [x ; -log(cos(x)); 0]
r_bar_cart = 
v_bar_cart = x_dot*diff(r_bar_cart,x)
v_bar_cart = 
norm_v = sqrt(sum(v_bar_cart.^2)) %magnitude of velocity
norm_v = 
e_t_cap =simplify((v_bar_cart/norm_v),'Criterion','preferReal')
e_t_cap = 
e_n = simplify(x_dot*diff(e_t_cap,x),'Criterion','preferReal')
e_n = 
rewrite(e_t_cap, 'sqrt')
ans = 
rewrite(e_n, 'sqrt')
ans = 

카테고리

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

태그

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by