필터 지우기
필터 지우기

"Unrecognized function or variable 'createCOTable'" error happens while Text Analytics Toolbox is installed

조회 수: 1 (최근 30일)
When I try the following code to get a Co-table and a Co-network, it shows "Unrecognized function or variable 'createCOTable'" while the Text Analytis Toolbox is successfully installed. Can anyone gently indicate anything to be fixed?
FYI: This group of codes is a part of this exercise on YouTube, hosted by MATLAB Japan.
-- Codes I wrote
>> % nKeywords = ["word A","word B","word C","word D","word E"];
nKeywords = 5;
span = 10;
nCooC = 5;
mode = 'center';
COTable = createCOTable(docs,span, nKeywords, nCooC, mode);
CONetwork = createCONetwork(COTable,'T');
Unrecognized function or variable 'createCOTable'.

채택된 답변

Abderrahim. B
Abderrahim. B 2023년 9월 25일
Hi!
Error message says it all. createCOTable is not a recognized function or variable to MATLAB, or maybe a user defined function that you have somehwere but not in the current folder or MATLAB search path. Also the error can be interpreted as the function is not a MATLAB build-in function.
Try to find the code for the function createCOTable and add it to your current folder or to matlab search path so you can call it.
If you are trying to create a table, you can use table or timetable it depends on your application and goal.
Hope this helps
Abderrahim
  댓글 수: 2
俊介 伊澤
俊介 伊澤 2023년 9월 25일
Hi Abderrahim,
Thank you for the reply. I understood you well and I found this document so I could run the code of createCOTable! In the 1st place, I didn't know a function defined by 3rd party users work on MATLAB. Thanks again!
Kind regards,
Shunsuke

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by