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!