Algorithm to convert code into mathmatically meaningful and readable format in text
1 次查看(过去 30 天)
显示 更早的评论
Hi, a simple question but perhaps no easy answers:
Does anyone know whether there is an algorithm or way to convert code (e.g. java, c etc) into a mathematically readable text format. One example is:
Input:
A = ( ( ( ( ( (X ) * Y ) / Z) * Q) * P) / R );
Output:
X * Y * Q * P
A = -----------------------
Z * R
Thanks for any advice.
1 个评论
José-Luis
2012-8-23
Maybe:
syms X Y Z Q P R
f = ( ( ( ( ( (X ) * Y ) / Z) * Q) * P) / R );
pretty(f)
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!