How to change the default publishing configuration without running into errors?

4 views (last 30 days)
%% ME 2004 HW 1 Template (Spring 2021)
% ME2004_S21_Homework01_AK
clear;
clc;
close all;
%% Problem 2
%% Problem 3
%% Problem 4
%% Problem 5
Genral structure of the .m file ^.
When trying to change the publishing options to pdf output file format while keeping output file folder as
C:\Users\Sasha\Desktop\ME2004_Assignments\html
get the following errors:
Error using publish
The output directory "C:\Users\Sasha\Desktop\ME2004_Assignments" is not writable.
Error in mdbpublish (line 55)
outputPath = publish(file, options);
Error using open (line 50)
NAME must be a character vector or string scalar.
Please, explain it like I am 5...

Answers (1)

Sindhu Karri
Sindhu Karri on 3 Feb 2021
Hi,
As per my understanding, you are getting an error while using the publish() function. You need to make sure that the "C:\Users\Sasha\Desktop\ME2004_Assignments\html" folder exists and you have permission to write in it.
  1 Comment
Alexander Kuznetsov
Alexander Kuznetsov on 4 Feb 2021
Hi Sindhu,
Yes, I have gotten that far from the other posts on Q&A.
I was able to somewhat solve the problem when I checked the UserWrite of my file (= 1); then check writability of every folder on the path to where I wanted to publish the file and to my surprise I was not able to publish anywhere except the ...\Sasha folder which is immediately in my Users folder. Going anywhere past this folder makes it impossible to publish the .m file. So, for now I stuck with it since publishing even in ...\Documents folder leads to the same error output message. In fact, my plots were not printing until I chose to publish in ...\Sasha folder even if I used snapnow and drawnow in the code.
My hope is to find a complete solution to this problem since even though I was able to publish in .html, my preferred method of publishing is .pdf without any errors occuring so hopefully the answer eventually comes around.
Thank you for your input!
Alex

Sign in to comment.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!