Clear Filters
Clear Filters

How do write dOmega in symbol in live editor

2 views (last 30 days)
Jinho Lee
Jinho Lee on 17 Feb 2022
Commented: Jinho Lee on 17 Feb 2022
I can write Omega by using "syms Omega" but how do I write dOmega(small change of Omega) in symbol...?

Answers (1)

Walter Roberson
Walter Roberson on 17 Feb 2022
Edited: Walter Roberson on 17 Feb 2022
syms Omega d_Omega d__Omega
Omega+d_Omega+d__Omega
ans = 
Probably not what you want. I suggest you consider using "prime" or "dot" notion instead
syms Omega Omega__dot Omega__prime
Omega+Omega__dot+Omega__prime
ans = 

Tags

Community Treasure Hunt

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

Start Hunting!