Error while excuting script in project - stellar motion

4 次查看(过去 30 天)
not understaing what the error in this.
  1 个评论
Shivam
Shivam 2024-9-5
Probably, clear the xlabel from workspace if you have previously set something like, xlabel = 'Wavelength' .

请先登录,再进行评论。

回答(1 个)

Suraj Kumar
Suraj Kumar 2024-9-5
编辑:Suraj Kumar 2024-9-5
The error message that you are encountering in MATLAB typically arises when there's a conflict between a variable and a function name.
You can check if a variable named 'xlabel' exists or not in the workspace by using the 'which' function.
Then, you can try clearing the variable from the workspace by using the 'clear' function before setting the xlabel.
plot(lambda,s,".-")
clear xlabel
xlabel("Wavelength")
ylabel("Intensity")
Hope this works !

类别

Help CenterFile Exchange 中查找有关 Application Deployment 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by