수식명령 관련 질문

2 次查看(过去 30 天)
우철
우철 2024-11-6
回答: Angelo Yeo 2024-11-6
안녕하세요? Matlab공부하는 직장인입니다.
아래 사진과 같은 수식은 어떻게 명령을 해야하는지 궁금해서 여쭙습니다.
확인부탁드립니다. 감사합니다.

采纳的回答

Angelo Yeo
Angelo Yeo 2024-11-6
syms rho rho0
integrand = rho^3 / ((rho^2 - rho0^2) / (1 - rho0^2) - rho^6)^(1/2);
zeta = int(integrand, rho, rho, 1);
disp(zeta);
rho0 값에 따라 결과가 바뀔텐데, 이 값이 0.1인 경우는 아래와 같이 계산시킬 수 있습니다.
subs(zeta, rho0, 0.1)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

标签

产品


版本

R2024b

Community Treasure Hunt

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

Start Hunting!