Write figure/plot to jpeg with Coder support
1 回表示 (過去 30 日間)
古いコメントを表示
h=figure;
...
print(h,'-djpeg',path);
The script generates a rotated view of a 3D object (surface plot) from data out of a `csv` file (i got around Coder not supporting csvread()).
`print` is ofc not supported by Coder either, so what would be the best course of action, since i need that script translated to C++?
I cannot use Compiler/shared lib approach, because the target doesn't allow for MCR installation.
something akin to
fwrite(fopen('debug.jpg','w'),h);
obviously doesn't work
0 件のコメント
回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!