Why am i getting this error 'unrecognized function or variable' for the defined function itself

2 次查看(过去 30 天)
function po(conc,p,k)
main_directory = "D:\Thesis'\New_samples";
s1 = 'PO_CN';
folder = fullfile(main_directory, strcat(s1, conc, '_', p));
sub_folder = fullfile(folder, strcat(s1, conc, '_', p, '_', k));
MM = readmatrix(fullfile(sub_folder,'MuellerMatrixausschnitt36 Bilder.txt'));
end
Error: PO "undefined function or variable"
  3 个评论
Image Analyst
Image Analyst 2022-6-22
编辑:Image Analyst 2022-6-22
Are conc, p, and k all character arrays or strings? None are numbers, right?
How did your main program call the function "po", like what variable values did it pass to it?
Attach ALL THE RED TEXT, not just a snippet from it like you did. It should show line number, the actual line of code, and the full error message, including traceback.
Attach the po.m file. Does the capitalization of the file match that on the "function" line?
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:

请先登录,再进行评论。

回答(1 个)

Stephen23
Stephen23 2022-6-22
编辑:Stephen23 2022-6-22
clc % <---------- !!!!!!!!!!!!!!!!!! DELETE THIS LINE !!!!!!!!!!!!!!!!
% <- and this line too
function MM = po(conc,p,k)
...
end
If you want to call the main function po(), then you cannot have any other code before that function.

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by