Error in publishing script

조회 수: 4 (최근 30일)
Harry Spratt
Harry Spratt 2020년 4월 12일
답변: Kaustav Bhattacharya 2020년 12월 22일
I obtain this error when publishing my script:
  1. Error using input - Cannot call INPUT from EVALC.
  2. Error in OpticalFunction (line 1) - startw = input('Enter starting wavelength: ');
I've seen that i can indeed publish my script my not evaluating the code as such
publish('myScript.m','evalCode',false)
however i do want the figures in my script to be published as well. Is there anyway around it such as running the script in certain sections.
Also relavent to the publish function, is it meant to publish the contents page:
Table of Contents
Setting Up Motor
Anaylsis of Indirect Band Gap (GaP)
Anaylsis of Indirect Band Gap (GaP)
Optical Function
as it doesn't. Any help is much appreicated

답변 (1개)

Kaustav Bhattacharya
Kaustav Bhattacharya 2020년 12월 22일
The ability to use "input" function as an argument in "evalc" for execution is not available in MATLAB. Publishing a MATLAB-file involves evaluating the MATLAB file from the MATLAB command prompt, which is carried by the "evalc" command. When you are using "evalc", the functions "diary", "more" and "input" are disabled.
A workaround is to use input dialog boxes to get some control over the script's execution.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by