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