... | @@ -23,13 +23,14 @@ Do note that you need to do this everytime before using the RTIS Dev Remote MATL |
... | @@ -23,13 +23,14 @@ Do note that you need to do this everytime before using the RTIS Dev Remote MATL |
|
|
|
|
|
For Windows you can run:
|
|
For Windows you can run:
|
|
```matlab
|
|
```matlab
|
|
pyenv('Version','your.version') % With 'your.version' indicating the 'major.minor' version number of you Python release, for example '3.6'.
|
|
pyenv('Version','your.version')
|
|
```
|
|
```
|
|
|
|
With `your.version` indicating the `major.minor` version number of you Python release, for example `3.6`.
|
|
On linux you need to refer to the path of your Python 3 installation:
|
|
On linux you need to refer to the path of your Python 3 installation:
|
|
```matlab
|
|
```matlab
|
|
pyenv('Version',"/usr/bin/python3") % You can also link to specific Python versions by altering the path.
|
|
pyenv('Version',"/usr/bin/python3")
|
|
```
|
|
```
|
|
|
|
You can also link to specific Python versions by altering the path.
|
|
Some more information can be found [here](https://nl.mathworks.com/help/matlab/matlab_external/install-supported-python-implementation.html#buialof-40).
|
|
Some more information can be found [here](https://nl.mathworks.com/help/matlab/matlab_external/install-supported-python-implementation.html#buialof-40).
|
|
|
|
|
|
### Initial setup
|
|
### Initial setup
|
... | @@ -128,7 +129,6 @@ for plotcounter = 1 : 16 |
... | @@ -128,7 +129,6 @@ for plotcounter = 1 : 16 |
|
end
|
|
end
|
|
|
|
|
|
%% Plot of processed data
|
|
%% Plot of processed data
|
|
|
|
|
|
figure()
|
|
figure()
|
|
imagesc(measurement_processed.processedData');
|
|
imagesc(measurement_processed.processedData');
|
|
colormap hot
|
|
colormap hot
|
... | | ... | |