У нас вы можете посмотреть бесплатно How to generate PDF report using PUBLISH command in MATLAB? или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video it shows the use of PUBLISH command to generate a PDF report for your MATLAB code. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code and other details/ steps of this video are posted in the below link: https://programmerworld.co/matlab/how... However, the main code is copied below also for reference: %% Plot sine and cosine waveform t = 1:0.1:40; y = sin(t) + 2*cos(t); plot(t,y); %% Display Text example disp("Hello Programmer World !!!"); -- publish('ReportGenerationExample.m', 'pdf') --