Algorithm to convert code into mathmatically meaningful and readable format in text
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentar
José-Luis
am 23 Aug. 2012
Maybe:
syms X Y Z Q P R
f = ( ( ( ( ( (X ) * Y ) / Z) * Q) * P) / R );
pretty(f)
Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!