I just bought the student version of Matlab 2013. I have three well log files (.las) and I have downloaded them onto my computer.
When I open matlab I think it has to deal with either retrieving the .las file, or setting the path to get the functions. When I try to even type help readlas it gives me this error:
"Undefined function 'readlas' for input arguments of type 'char'."
Where do I set my path? How do I let Matlab access those three well log .las files?
MATLAB does not have any built-in capability to read LAS well log files. There is no function
readlassupplied with MATLAB. If you have a program that uses a commandreadlas, you will need to contact the author of the program to obtain the code forreadlas, and then add the directory containingreadlasto your path. If you already havereadlas, then just add its directory to the path.There are freely available third-party tools that can read LAS files into MATLAB - one of the most common is Seislab, available here from the MATLAB Central File Exchange. However:
readlasreads it in, and I would doubt that you can simply replace yourreadlaswith Seislab'sread_las_filewithout changing quite a few other things.Hope that helps!