0

My school provides me with 2 licenses for Matlab - one for teaching+education, and one for research.

If I wanted to do things "all right", I should use a different license for different things I do. However, moving/overwriting the license.lic file is not a suitably simple solution for me.

Is there a way to change the license Matlab uses (whithout removing the other)?

Martin Pecka
  • 2,953
  • 1
  • 31
  • 40

1 Answers1

2

Yes you can!

When starting MATLAB from the terminal, you can specify startup options such as nosplash, nodisplay, etc and fortunately the license file you want to use.

For example (on Windows), using this

matlab.exe -c licensefile

will perform what you want. Note that -c licensefile is a valid syntax for all platforms.

More info here and here

Benoit_11
  • 13,905
  • 2
  • 24
  • 35