Question

Here is the matlab code:

javaclasspath(pwd); % set java path to current working directory

% call the java function
Result = googleTrend.TrendDataExtractor.ExtractData(Email, Password, word, from, till, scale, handlerHttps, handlerHttp);

It runs fine in windows but in mac it gives the following error:

Undefined variable "googleTrend" or class "googleTrend.TrendDataExtractor.ExtractData"

I think javaclasspath(pwd) is not working correct.
Note: pwd returns the current working directory

Was it helpful?

Solution

It was problem with the pwd. I hard-coded the the path in javaclasspath it worked fine

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top