Can't save plot as png file ( Error using hgexport)
up vote
0
down vote
favorite
I'm trying to save a plot as png (i.e. other formats suffer from this problem) via save as but I got this error
Error using hgexport
Error using print
Too many input arguments
Any suggestions? Matlab R2016a
matlab plot
add a comment |
up vote
0
down vote
favorite
I'm trying to save a plot as png (i.e. other formats suffer from this problem) via save as but I got this error
Error using hgexport
Error using print
Too many input arguments
Any suggestions? Matlab R2016a
matlab plot
Thanks to detail the error message, but it would equally useful to also show the code that generated the error ...
– Hoki
Nov 22 at 17:56
@Hoki, I wish the error is too long, but this is what I got. Any simple code yields this error. Probably this has nothing to do with the code but some corrupted or wrong directory for the print function.
– CroCo
Nov 22 at 18:00
Too many input arguments
signals that there is definitely something wrong with the code. Are you able to reproduce this error with a complete sample set of data and instructions ? If yes then please detail it in your question.
– Hoki
Nov 22 at 18:13
@Hoki I’m using the plot window. No code for using print. File>Save as
– CroCo
Nov 22 at 19:17
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to save a plot as png (i.e. other formats suffer from this problem) via save as but I got this error
Error using hgexport
Error using print
Too many input arguments
Any suggestions? Matlab R2016a
matlab plot
I'm trying to save a plot as png (i.e. other formats suffer from this problem) via save as but I got this error
Error using hgexport
Error using print
Too many input arguments
Any suggestions? Matlab R2016a
matlab plot
matlab plot
asked Nov 22 at 17:42
CroCo
2,89523161
2,89523161
Thanks to detail the error message, but it would equally useful to also show the code that generated the error ...
– Hoki
Nov 22 at 17:56
@Hoki, I wish the error is too long, but this is what I got. Any simple code yields this error. Probably this has nothing to do with the code but some corrupted or wrong directory for the print function.
– CroCo
Nov 22 at 18:00
Too many input arguments
signals that there is definitely something wrong with the code. Are you able to reproduce this error with a complete sample set of data and instructions ? If yes then please detail it in your question.
– Hoki
Nov 22 at 18:13
@Hoki I’m using the plot window. No code for using print. File>Save as
– CroCo
Nov 22 at 19:17
add a comment |
Thanks to detail the error message, but it would equally useful to also show the code that generated the error ...
– Hoki
Nov 22 at 17:56
@Hoki, I wish the error is too long, but this is what I got. Any simple code yields this error. Probably this has nothing to do with the code but some corrupted or wrong directory for the print function.
– CroCo
Nov 22 at 18:00
Too many input arguments
signals that there is definitely something wrong with the code. Are you able to reproduce this error with a complete sample set of data and instructions ? If yes then please detail it in your question.
– Hoki
Nov 22 at 18:13
@Hoki I’m using the plot window. No code for using print. File>Save as
– CroCo
Nov 22 at 19:17
Thanks to detail the error message, but it would equally useful to also show the code that generated the error ...
– Hoki
Nov 22 at 17:56
Thanks to detail the error message, but it would equally useful to also show the code that generated the error ...
– Hoki
Nov 22 at 17:56
@Hoki, I wish the error is too long, but this is what I got. Any simple code yields this error. Probably this has nothing to do with the code but some corrupted or wrong directory for the print function.
– CroCo
Nov 22 at 18:00
@Hoki, I wish the error is too long, but this is what I got. Any simple code yields this error. Probably this has nothing to do with the code but some corrupted or wrong directory for the print function.
– CroCo
Nov 22 at 18:00
Too many input arguments
signals that there is definitely something wrong with the code. Are you able to reproduce this error with a complete sample set of data and instructions ? If yes then please detail it in your question.– Hoki
Nov 22 at 18:13
Too many input arguments
signals that there is definitely something wrong with the code. Are you able to reproduce this error with a complete sample set of data and instructions ? If yes then please detail it in your question.– Hoki
Nov 22 at 18:13
@Hoki I’m using the plot window. No code for using print. File>Save as
– CroCo
Nov 22 at 19:17
@Hoki I’m using the plot window. No code for using print. File>Save as
– CroCo
Nov 22 at 19:17
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
After using which print
, it seems there is a user-defined function whose name is print
in this folder
C:UsersXXXXDocumentsMATLABprint.m
Matlab is probably trying to call this function instead of the one which is defined in here
C:Program FilesMATLABR2016atoolboxmatlabgraphicsprint.m
This is really awkward. Matlab should alter users when they name functions with already built-in functions. After renaming the user-defined function, Matlab successfully saved the figure as png.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53436021%2fcant-save-plot-as-png-file-error-using-hgexport%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
After using which print
, it seems there is a user-defined function whose name is print
in this folder
C:UsersXXXXDocumentsMATLABprint.m
Matlab is probably trying to call this function instead of the one which is defined in here
C:Program FilesMATLABR2016atoolboxmatlabgraphicsprint.m
This is really awkward. Matlab should alter users when they name functions with already built-in functions. After renaming the user-defined function, Matlab successfully saved the figure as png.
add a comment |
up vote
0
down vote
accepted
After using which print
, it seems there is a user-defined function whose name is print
in this folder
C:UsersXXXXDocumentsMATLABprint.m
Matlab is probably trying to call this function instead of the one which is defined in here
C:Program FilesMATLABR2016atoolboxmatlabgraphicsprint.m
This is really awkward. Matlab should alter users when they name functions with already built-in functions. After renaming the user-defined function, Matlab successfully saved the figure as png.
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
After using which print
, it seems there is a user-defined function whose name is print
in this folder
C:UsersXXXXDocumentsMATLABprint.m
Matlab is probably trying to call this function instead of the one which is defined in here
C:Program FilesMATLABR2016atoolboxmatlabgraphicsprint.m
This is really awkward. Matlab should alter users when they name functions with already built-in functions. After renaming the user-defined function, Matlab successfully saved the figure as png.
After using which print
, it seems there is a user-defined function whose name is print
in this folder
C:UsersXXXXDocumentsMATLABprint.m
Matlab is probably trying to call this function instead of the one which is defined in here
C:Program FilesMATLABR2016atoolboxmatlabgraphicsprint.m
This is really awkward. Matlab should alter users when they name functions with already built-in functions. After renaming the user-defined function, Matlab successfully saved the figure as png.
answered Nov 26 at 18:41
CroCo
2,89523161
2,89523161
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53436021%2fcant-save-plot-as-png-file-error-using-hgexport%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Thanks to detail the error message, but it would equally useful to also show the code that generated the error ...
– Hoki
Nov 22 at 17:56
@Hoki, I wish the error is too long, but this is what I got. Any simple code yields this error. Probably this has nothing to do with the code but some corrupted or wrong directory for the print function.
– CroCo
Nov 22 at 18:00
Too many input arguments
signals that there is definitely something wrong with the code. Are you able to reproduce this error with a complete sample set of data and instructions ? If yes then please detail it in your question.– Hoki
Nov 22 at 18:13
@Hoki I’m using the plot window. No code for using print. File>Save as
– CroCo
Nov 22 at 19:17