0

i just installed Matlab on my ubuntu 14.04 and i can open it just with terminal writing full path, but i want to open terminal and write only "matlab" to start that program without writing full path. thanks

1 Answers1

2

Probably best solution will be creating soft symbolic link to /usr/bin.

Just type into terminal sudo ln -s <full_path_to_matlab> /usr/bin/matlab, and thats all.

How to create a soft symbolic link

roomcayz
  • 453