Create a PDF document from Matlab?
이전 댓글 표시
Hi guys,
With results calculated and plotted in matlab, I would love to generate a beautiful print-friendly PDF which pops open?
Is this a possibility?
Thanks!
답변 (2개)
Ahmet Cecen
2016년 3월 4일
3 개 추천
댓글 수: 9
A
2016년 3월 4일
Ahmet Cecen
2016년 3월 4일
It will publish any figure or anything that prints to the command line as well.
A
2016년 3월 4일
Ahmet Cecen
2016년 3월 4일
None that I am aware of, other than using a pdf editor and removing it manually.
A
2016년 3월 4일
Walter Roberson
2016년 3월 4일
If you are using Academic or Home or Student license, then Mathworks watermarks are mandatory. If you are using a Professional / Commercial license then there might be a way around it (not that I know what the way is.)
Image Analyst
2016년 3월 4일
"using a pdf editor and removing it manually." <= perhaps if you're using Windows and a PDF editor smart enough to know ActiveX you could control it from MATLAB to "automatically" find a text string and change or delete it.
Ahmet Cecen
2016년 3월 5일
Here is another very round about and much harder way of doing it as you seem to be sincerly hating advertising for MATLAB.
1) Download and Install Jupyter notebook and Python.
2) Either install the Jupyter MATLAB connector or use the official MATLAB engine for Python.
3) Write your script in Jupyter, and then you can compile it as a PDF without the watermarks.
kajin
2024년 10월 20일
0 개 추천
εημλζφδμωξ how can write in matlab
댓글 수: 1
You can write that as
thisline = 'εημλζφδμωξ';
You can, for example,
text(0.5, 0.4, thisline, 'interpreter', 'none')
But if you need latex then you would have to use something like
thislinelatex = '$\varepsilon\eta\mu\lambda\zeta\varphi\delta\mu\omega\xi$';
text(0.5, 0.5, thislinelatex, 'interpreter', 'latex')
카테고리
도움말 센터 및 File Exchange에서 Integration with Online Platforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
