Hello,
I had the same issue, and the above solutions works great on ubuntu 64Bit.
I put in vrepdemo.m :
vrep = VREP('path', '/home/pauka/V-REP_PRO_EDU_V3_2_3_rev4_64_Linux');
in VREP.m, I add the version (64Bit) in libpath :
libpath = { fullfile(opt.path, 'programming', 'remoteApi')
fullfile(opt.path, 'programming', 'remoteApiBindings', 'matlab', 'matlab')
fullfile(opt.path, 'programming', 'remoteApiBindings', 'lib', 'lib', '64Bit')
};
Next, same issue with idisp, so I have replace idisp for 'image', works great. But the next issue is :
Error using remApi/simxStartSimulation
Method 'simxStartSimulation' is not defined for
class 'remApi' or is removed from MATLAB's search
path.
Error in VREP/simstart (line 322)
s =
obj.vrep.simxStartSimulation(obj.client,
obj.mode);
Error in vrepdemo (line 76)
vrep.simstart();
But in fact, I looked in V-REP_PRO_EDU_V3_2_3_rev4_64_Linux/programming/remoteApi/extApi.h and the method exists :
EXTAPI_DLLEXPORT simxInt simxStartSimulation(simxInt clientID,simxInt operationMode);
The path extApi.h is in the path because it is added in VREP :
libpath = { fullfile(opt.path, 'programming', 'remoteApi')
fullfile(opt.path, 'programming', 'remoteApiBindings', 'matlab', 'matlab')
fullfile(opt.path, 'programming', 'remoteApiBindings', 'lib', 'lib', '64Bit')
};
So I don't know....