Display numeric value before function with using syms

1 Ansicht (letzte 30 Tage)
David Cole
David Cole am 2 Jan. 2024
Kommentiert: Dyuman Joshi am 12 Jan. 2024
How can I force the numeric part of my function to display first?
syms t;
u=symunit;
current = vpa(0.002*sin(10^3*t));
displayFormula("i=current*u.A")

Akzeptierte Antwort

Karl
Karl am 2 Jan. 2024
You can include the unit when you define current:
syms t;
u=symunit;
current = vpa(0.002*sin(10^3*t))*u.A;
displayFormula("i=current")
  1 Kommentar
Dyuman Joshi
Dyuman Joshi am 12 Jan. 2024
I have accepted this answer, as it accurately provides the expected output.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Hassaan
Hassaan am 2 Jan. 2024
Bearbeitet: Hassaan am 2 Jan. 2024
syms t;
u = symunit; % Define symbolic unit system
current = vpa(0.002*sin(10^3*t)); % Create a symbolic expression
% Append the unit
formattedCurrent = current*u.A;
% Display the formatted current with the unit
disp(formattedCurrent);
The variable current now holds a high-precision symbolic representation of the function 0.002*sin(1000*t). This expression has not been numerically evaluated because t is still a symbolic variable without a specific value.
------------------------------------------------------------------------------------------------------------------------------------------------
If you find the solution helpful and it resolves your issue, it would be greatly appreciated if you could accept the answer. Also, leaving an upvote and a comment are also wonderful ways to provide feedback.
Professional Interests
  • Technical Services and Consulting
  • Embedded Systems
  • Electrical and Electronics Engineering

Kategorien

Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange

Produkte


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by