"Unrecognized function or variable 'createCOTable'" error happens while Text Analytics Toolbox is installed
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
俊介 伊澤
il 25 Set 2023
Commentato: Abderrahim. B
il 25 Set 2023
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?
-- 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'.
0 Commenti
Risposta accettata
Abderrahim. B
il 25 Set 2023
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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!