From 5b38bacb18a8461e2aabfc132706f707d640bb1b Mon Sep 17 00:00:00 2001 From: Will Tripp Date: Fri, 27 Oct 2023 06:09:51 +0000 Subject: [PATCH] Update MPM.md for 2023.10.0.1 Introduces support for: 1. Installation of support packages 2. Providing an inputFile with list of products to install 3. List of product specification by release for use with the inputFile argument to MPM fixes mathworks-ref-arch/matlab-dockerfile#51 --- MPM.md | 151 +++++--- mpm-input-files/R2019a/mpm_input_r2019a.txt | 319 ++++++++++++++++ mpm-input-files/R2019b/mpm_input_r2019b.txt | 324 ++++++++++++++++ mpm-input-files/R2020a/mpm_input_r2020a.txt | 333 +++++++++++++++++ mpm-input-files/R2020b/mpm_input_r2020b.txt | 342 +++++++++++++++++ mpm-input-files/R2021a/mpm_input_r2021a.txt | 346 ++++++++++++++++++ mpm-input-files/R2021b/mpm_input_r2021b.txt | 356 ++++++++++++++++++ mpm-input-files/R2022a/mpm_input_r2022a.txt | 366 +++++++++++++++++++ mpm-input-files/R2022b/mpm_input_r2022b.txt | 378 +++++++++++++++++++ mpm-input-files/R2023a/mpm_input_r2023a.txt | 383 +++++++++++++++++++ mpm-input-files/R2023b/mpm_input_r2023b.txt | 386 ++++++++++++++++++++ 11 files changed, 3638 insertions(+), 46 deletions(-) create mode 100644 mpm-input-files/R2019a/mpm_input_r2019a.txt create mode 100644 mpm-input-files/R2019b/mpm_input_r2019b.txt create mode 100644 mpm-input-files/R2020a/mpm_input_r2020a.txt create mode 100644 mpm-input-files/R2020b/mpm_input_r2020b.txt create mode 100644 mpm-input-files/R2021a/mpm_input_r2021a.txt create mode 100644 mpm-input-files/R2021b/mpm_input_r2021b.txt create mode 100644 mpm-input-files/R2022a/mpm_input_r2022a.txt create mode 100644 mpm-input-files/R2022b/mpm_input_r2022b.txt create mode 100644 mpm-input-files/R2023a/mpm_input_r2023a.txt create mode 100644 mpm-input-files/R2023b/mpm_input_r2023b.txt diff --git a/MPM.md b/MPM.md index 6cbb778..2f03203 100644 --- a/MPM.md +++ b/MPM.md @@ -2,100 +2,153 @@ ## Description -MATLAB® Package Manager (**mpm**) is a command-line package manager for MathWorks® products. You can use MATLAB Package Manager to programmatically install MATLAB, Simulink®, and other MathWorks products on Linux® operating systems, or as part of a Dockerfile. MATLAB Package Manager provides options to specify the products, release, and destination for an installation. +MATLAB® Package Manager (`mpm`) is a command-line package manager for installing MATLAB, Simulink®, and other MathWorks® products or support packages. You can run the `mpm` command from the operating system command line or from a Dockerfile. + +**Supported Platforms**: Linux® ## Download MATLAB Package Manager -Use `wget`in your Linux terminal to download the latest version of MATLAB Package Manager. +From your Linux terminal, use `wget` to download the latest version of `mpm`. wget https://www.mathworks.com/mpm/glnxa64/mpm -Before you run MATLAB Package Manager, give the downloaded file executable permissions. +Give the downloaded file executable permissions so that you can run `mpm`. chmod +x mpm -`mpm` requires the following packages on your system: `unzip`, `ca-certificates`, and MATLAB Dependencies. +Check that these third-party packages required to run `mpm` are installed on your system. +* `unzip` +* `ca-certificates` -For the MATLAB Dependencies, refer to `base-dependencies.txt` files in the [MATLAB Dependencies](https://github.com/mathworks-ref-arch/container-images/tree/master/matlab-deps) repository corresponding to your MATLAB version and operating system. +Also check the dependencies required to run MATLAB are installed. To view the list of MATLAB dependencies, from the [MATLAB Dependencies](https://github.com/mathworks-ref-arch/container-images/tree/master/matlab-deps) repository, open the `//base-dependencies.txt` file, where `` is the MATLAB release you are installing and `` is your operating system. ## Syntax -- `mpm install --release= --products ... ` installs products ` ... ` from release version `` to the default installation folder. [Example](#install-matlab-simulink-and-additional-products) +### Install Products +`mpm install --release= --products ... ` installs products ` ... ` from release version `` to the default installation folder. [Example](#install-products-to-default-folder) + +`mpm install --release= --products ... ` sets additional [product installation options](#product-installation-options). For example, you can specify the install source or destination, whether to install documentation and examples, and whether to install the GPU libraries for use with Parallel Computing Toolbox™. [Example](#install-products-using-optional-command-line-inputs) + +`mpm install --inputfile ` install products using the `` input file. You can download a template input file for your desired release from the [mpm-input-files](mpm-input-files) folder. You must specify `--inputfile` without any other options. [Example](#install-products-using-input-file) -- `mpm install ... ` specifies options using one or more installation option flags `` in addition to any of the input argument combinations in the previous syntax. For example, you can specify the install destination, whether to install documentation and examples, and whether to install the GPU libraries for use with Parallel Computing Toolbox™. [Example](#install-matlab-and-specify-installation-options) +#### Product Installation Options +| Option | Description | Example | +| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------ | +| `--release` | Software version to install. This option supports releases and updates. To install the latest version of a release, specify the release version (for example, `R2023b`). To install a specific update release, specify the release version with an update number suffix (for example, `R2023bU4`). To install a version without updates, specify the release version with an update 0 or general release suffix (for example, `R2023bU0` or `R2023bGR`). | `R2023b`, `R2023bU2`, `R2023bGR` | +| `--products` | List of products to install, specified as product names separated by spaces. `mpm` can install most MathWorks products and support packages. For the full list of correctly formatted product names, download the template input file for your desired release from the [mpm-input-files](mpm-input-files) folder and view the product and support package lists. For more information on which products `mpm` cannot install, see [Limitations](#limitations). | `MATLAB Simulink Deep_Learning_Toolbox Fixed-Point_Designer` | +| `--inputfile` | Full path to the input file used to install products. Download a template input file for your desired release from the [mpm-input-files](mpm-input-files) folder and customize it for your installation. For example, you can specify the products and support packages to install and the desired installation folder. You must specify `--inputfile` without any other options. | `/home/$USER/matlab/mpm_input_r2023b.txt` +| `--destination` | Full path to the desired installation folder. If you are adding products or support packages to an existing MATLAB installation, specify the full path to where MATLAB is installed. `mpm` determines the folder to which to install support packages based on the MATLAB installation folder. Defaults to `/usr/share/matlab` if unset. | `/path/to/destination` | +| `--source` | Full path to downloaded product files (supported since R2018b) or an ISO image (supported since R2021b). `mpm` downloads the product files if unset. | `/path/to/source` | +| `--doc` | Flag to install documentation and examples (supported for R2022b and earlier). To install the documentation in R2023a and later, use the `install-doc` command. | `--doc` | +| `--no-gpu` | Flag to prevent installation of GPU libraries when you install Parallel Computing Toolbox (supported since R2023a). If you do not intend to use GPU computing in MATLAB, specify this option to reduce the size of the install. You can install the GPU libraries later by calling a GPU function such as `gpuArray` or `gpuDevice` in MATLAB. | `--no-gpu` | -- `mpm install-doc --matlabroot ` installs documentation and examples for the MATLAB installation at ``. [Example](#install-matlab-and-specify-installation-options) +### Install Documentation +*Since R2023a* -- `mpm install-doc --matlabroot ` installs documentation and examples for the MATLAB installation at `` and specifies options using one or more documentation installation option flags ``. For example, you can specify the path to a mounted ISO image of the documentation or the documentation installation destination. [Example](#install-matlab-and-specify-installation-options) +`mpm install-doc --matlabroot ` installs documentation and examples for the MATLAB installation at ``. [Example](#install-products-using-optional-command-line-inputs) -- `mpm ` specifies a global option ``, ignoring other input arguments. For example, you can show the help or the installed version of MATLAB Package Manager. +`mpm install-doc --matlabroot ` sets additional [documentation installation options](#documentation-installation-options). For example, you can specify the path to a mounted ISO image of the documentation or the documentation installation destination. [Example](#install-products-using-optional-command-line-inputs) + +#### Documentation Installation Options +| Option | Description | Example | +| --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | +| `--matlabroot` | Full path to the folder in which MATLAB is installed. | `/path/to/matlabroot` | +| `--source` | Full path to mounted documentation ISO. Defaults to `$PWD/archives` if unset. To download a documentation ISO, see [Install Documentation on Offline Machines](https://www.mathworks.com/help/install/ug/install-documentation-on-offline-machines.html). | `/path/to/source` | +| `--destination` | Full path to the desired installation folder. | `/path/to/docroot` | + +### Get Help and Version Information +`mpm --help` or `mpm -h` displays command-line help for `mpm`. Example: `./mpm --help` + +`mpm --version` or `mpm -v` displays `mpm` version information. Example: `./mpm --version` ## Examples -### Install MATLAB, Simulink, and Additional Products +### Install Products to Default Folder -To install MATLAB R2023b, Simulink, and Signal Processing Toolbox to the default folder, navigate to the folder containing the `mpm` binary file and run the following command. +Install MATLAB R2023b, Simulink, and Signal Processing Toolbox™ to the default folder. Navigate to the folder containing the `mpm` binary file and run this command. ./mpm install --release=R2023b --products MATLAB Simulink Signal_Processing_Toolbox -You can install further products later. For example, add Robotics System Toolbox to the MATLAB installation. +You can install additional products later. For example, add Robotics System Toolbox™ to the MATLAB installation. ./mpm install --release=R2023b --products Robotics_System_Toolbox -### Install MATLAB and Specify Installation Options +### Install Products Using Optional Command-Line Inputs Install MATLAB R2023b, specifying these installation options: -- Set the installation destination folder to `/home/username/matlab`. +- Set the installation destination folder to `/home/$USER/matlab`. - Install Parallel Computing Toolbox without the GPU libraries. ``` -./mpm install --release=R2023b --destination=/home/username/matlab --products MATLAB Parallel_Computing_Toolbox --no-gpu +./mpm install --release=R2023b --destination=/home/$USER/matlab --products MATLAB Parallel_Computing_Toolbox --no-gpu ``` Download a documentation ISO from [Install Documentation on Offline Machines](https://www.mathworks.com/help/install/ug/install-documentation-on-offline-machines.html) and mount the ISO. Install the documentation and examples, specifying the MATLAB installation folder and the path to the mounted ISO. - ./mpm install-doc --matlabroot=/home/username/matlab --source=/path/to/source + ./mpm install-doc --matlabroot=/home/$USER/matlab --source=/path/to/source -## Global Options -| Option | Description | Example | -| ------------------- | ------------------------------------------------ | --------------- | -| `--help` or `-h` | Flag for showing help. | `./mpm --help` | -| `--version` or `-v` | Flag for showing MATLAB Package Manager version. | `./mpm --version` | +### Install Products Using Input File -## Installation Options -| Option | Description | Example | -| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------ | -| `--release` | Software version to install. This option supports releases and updates. To install the latest version of a release, specify the release version (for example, `R2023b`). To install a specific update release, specify the release version with an update number suffix (for example, `R2023bU4`). To install a version without updates, specify the release version with an update 0 or general release suffix (for example, `R2023bU0` or `R2023bGR`). | `R2023b`, `R2023bU2`, `R2023bGR` | -| `--products` | List of products to install, specified as product names separated by spaces. MATLAB Package Manager can install most MathWorks products. For the full list of correctly formatted product names, download the [MathWorks Product Installer](https://www.mathworks.com/help/install/ug/install-noninteractively-silent-installation.html) and refer to the `installer_input.txt` file included in it. Alternatively, see [Products and Services](https://www.mathworks.com/products.html) for product names in the current MATLAB release and replace spaces in names with underscores. For more information on which products MATLAB Package manager can not install, see [Limitations](#limitations). | `MATLAB Simulink Deep_Learning_Toolbox Fixed-Point_Designer` | -| `--destination` | Full path to the desired installation folder. Defaults to `/usr/share/matlab` if unset. | `/path/to/destination` | -| `--source` | Full path to downloaded product files (optional). MATLAB Package Manager downloads the product files if unset. | `/path/to/source` | -| `--doc` | Flag to install documentation and examples (optional). Supported for R2022b and earlier releases. To install the documentation in a later release, use the `install-doc` command. | `--doc` | -| `--no-gpu` | Flag to prevent installation of GPU libraries when you install Parallel Computing Toolbox (optional). If you do not intend to use GPU computing in MATLAB, specify this option to reduce the size of the install. You can install the GPU libraries later by calling a GPU function such as `gpuArray` or `gpuDevice` in MATLAB. Supported for releases R2023a and later. | `--no-gpu` | +Install products and support packages for MATLAB R2023b by specifying installation options in a file. -## Documentation Installation Options +From the [mpm-input-files](mpm-input-files) folder, open the `R2023b` folder and download the `mpm_input_r2023b.txt` input file. -For releases R2023a and later, use the `install-doc` command to install documentation and examples for an existing MATLAB installation. +Open the file. Configure the MATLAB installation by uncommenting lines that start with a single `'#'` and updating their values. Update these sections: -| Option | Description | Example | -| --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------- | -| `--matlabroot` | Full path to the folder in which MATLAB is installed. | `/path/to/matlabroot` | -| `--source` | Full path to mounted documentation ISO. Defaults to `$PWD/archives` if unset. To download a documentation ISO, see [Install Documentation on Offline Machines](https://www.mathworks.com/help/install/ug/install-documentation-on-offline-machines.html). | `/path/to/source` | -| `--destination` | Full path to the desired installation folder (optional). | `/path/to/docroot` | +*SPECIFY DESTINATION FOLDER* + +Uncomment the `destinationFolder` line and set an installation folder. For example: + +``` +destinationFolder=/home/$USER/matlab +``` + +*INSTALL PRODUCTS* + +Uncomment the `product.MATLAB` and `product.Simulink` lines for installing MATLAB And Simulink. + +``` +product.MATLAB +# ... +product.Simulink +``` + +*INSTALL SUPPORT PACKAGES* + +Uncomment the `product.Deep_Learning_Toolbox_Model_for_AlexNet_Network` line to install a Deep Learning Toolbox™ support package. `mpm` will automatically install this support package's required product, Deep Learning Toolbox. +``` +product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +``` +Save the file. +Install the products and support package. +``` +./mpm install --inputfile /path/to/file/mpm_input_r2023b.txt +``` ## Limitations -- Some MathWorks products are not available on Linux. For a list of products not available on Linux, see [Products Not Available for Linux](https://www.mathworks.com/support/requirements/matlab-linux.html). -- MATLAB Package Manager cannot install the products in the table below. +- `mpm` supports installing products and support pacakges for these releases only: + - Products - R2017b or later + - Support Packages - R2019a or later +- Some MathWorks products are not available on Linux. For the full list, see [Products Not Available for Linux](https://www.mathworks.com/support/requirements/matlab-linux.html). +- `mpm` cannot install these products: -| Product | -| ----------------------- | -| IEC Certification Kit | -| DO Qualification Kit | -| Simulink Code Inspector | + - IEC Certification Kit + - DO Qualification Kit + - Simulink Code Inspector™ -- R2017b is the oldest release that MATLAB Package Manager supports. +- `mpm` cannot install these support packages: + + - Image Acquisition Toolbox™ Support Package for GenICam™ Interface + - Image Acquisition Toolbox Support Package for GigE Vision® Hardware + - Simulink Coder™ Support Package for BBC micro:bit + - MATLAB Support Package for IP Cameras + - New Desktop for MATLAB + - MATLAB Support Package for Parrot® Drones + - MATLAB Support Package for Ryze Tello Drones + - Simulink Real-Time™ Target Support Package ## Feedback and Support @@ -103,6 +156,12 @@ If you encounter a technical issue or have an enhancement request, create an iss ## Changelog +### 2023.10.0.1 - October 26, 2023 +**Added:** Major new features + - Install hardware and software support packages. + - Install required products automatically. For example, if you specify `--product Simulink`, then `mpm` installs both Simulink and the required product MATLAB. + - Install products by specifying options in an input file. + ### 2023.9 - September 13, 2023 - **Fixed:** Resolved an issue that prevented installation of R2023b. diff --git a/mpm-input-files/R2019a/mpm_input_r2019a.txt b/mpm-input-files/R2019a/mpm_input_r2019a.txt new file mode 100644 index 0000000..d58f8f2 --- /dev/null +++ b/mpm-input-files/R2019a/mpm_input_r2019a.txt @@ -0,0 +1,319 @@ +######################################################################## +## Configuration File for Installing R2019a MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2019a +## MathWorks products and support packages. +## +## To install a specific update for R2019a, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DO_Qualification_Kit +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_HDL_Toolbox +#product.LTE_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.Mapping_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.OPC_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Requirements +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.Trading_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product._GPU_Coder_Support_Package_for_NVIDIA_GPUs_ +#product.Aerospace_Blockset_CubeSat_Simulation_Library +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.Communications_Toolbox_Library_for_the_Bluetooth_Protocol +#product.Communications_Toolbox_Library_for_the_NFC_Protocol +#product.Communications_Toolbox_Library_for_the_ZigBee_Protocol +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Computer_Vision_System_Toolbox_OCR_Language_Data +#product.Computer_Vision_System_Toolbox_OpenCV_Interface +#product.Computer_Vision_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Apache_Cassandra_Database +#product.Database_Toolbox_Interface_for_MongoDB +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Importer_for_Tensorflow-Keras_Models +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_SqueezeNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_PX4_Autopilots +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_Discovery_Boards +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_F28M3x_Concerto_Processors +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Hamamatsu_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_QImaging_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_IP_Cameras +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.Robotics_System_Toolbox_Interface_for_ROS_Custom_Messages +#product.Robotics_System_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.WINNER_II_Channel_Model_for_Communications_Toolbox + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMTlh diff --git a/mpm-input-files/R2019b/mpm_input_r2019b.txt b/mpm-input-files/R2019b/mpm_input_r2019b.txt new file mode 100644 index 0000000..8f0558d --- /dev/null +++ b/mpm-input-files/R2019b/mpm_input_r2019b.txt @@ -0,0 +1,324 @@ +######################################################################## +## Configuration File for Installing R2019b MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2019b +## MathWorks products and support packages. +## +## To install a specific update for R2019b, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DO_Qualification_Kit +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_HDL_Toolbox +#product.LTE_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.Mapping_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Navigation_Toolbox +#product.OPC_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Requirements +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.Trading_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product._GPU_Coder_Support_Package_for_NVIDIA_GPUs_ +#product.Aerospace_Blockset_CubeSat_Simulation_Library +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.Communications_Toolbox_Library_for_the_Bluetooth_Protocol +#product.Communications_Toolbox_Library_for_the_NFC_Protocol +#product.Communications_Toolbox_Library_for_the_ZigBee_Protocol +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Computer_Vision_Toolbox_OpenCV_Interface +#product.Computer_Vision_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Apache_Cassandra_Database +#product.Database_Toolbox_Interface_for_MongoDB +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Importer_for_Tensorflow-Keras_Models +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_SqueezeNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_PX4_Autopilots +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_Discovery_Boards +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_F28M3x_Concerto_Processors +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Hamamatsu_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_QImaging_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_IP_Cameras +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_AWS_Batch +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Interface_for_ROS_Custom_Messages +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.SerDes_Toolbox_Interface_for_SiSoft_Quantum_Channel_Designer_and_QSI_Software +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.WINNER_II_Channel_Model_for_Communications_Toolbox + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMTli diff --git a/mpm-input-files/R2020a/mpm_input_r2020a.txt b/mpm-input-files/R2020a/mpm_input_r2020a.txt new file mode 100644 index 0000000..14d9208 --- /dev/null +++ b/mpm-input-files/R2020a/mpm_input_r2020a.txt @@ -0,0 +1,333 @@ +######################################################################## +## Configuration File for Installing R2020a MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2020a +## MathWorks products and support packages. +## +## To install a specific update for R2020a, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DO_Qualification_Kit +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.MATLAB_Web_App_Server +#product.Mapping_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Motor_Control_Blockset +#product.Navigation_Toolbox +#product.OPC_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Compiler +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Requirements +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.Trading_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox +#product.Wireless_HDL_Toolbox + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product._GPU_Coder_Support_Package_for_NVIDIA_GPUs_ +#product.Aerospace_Blockset_CubeSat_Simulation_Library +#product.Automated_Driving_Toolbox_Interface_for_Unreal_Engine_4_Projects +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.Communications_Toolbox_Library_for_the_Bluetooth_Protocol +#product.Communications_Toolbox_Library_for_the_NFC_Protocol +#product.Communications_Toolbox_Library_for_the_ZigBee_Protocol +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Computer_Vision_Toolbox_OpenCV_Interface +#product.Computer_Vision_Toolbox_OpenCV_Interface_for_Simulink +#product.Computer_Vision_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Apache_Cassandra_Database +#product.Database_Toolbox_Interface_for_MongoDB +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Importer_for_Tensorflow-Keras_Models +#product.Deep_Learning_Toolbox_Model_Quantization_Library +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-19_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-53_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_PX4_Autopilots +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_Discovery_Boards +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_F28M3x_Concerto_Processors +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Hamamatsu_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_QImaging_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.Image_Processing_Toolbox_Hyperspectral_Imaging_Library +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_IP_Cameras +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_AWS_Batch +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Interface_for_ROS_Custom_Messages +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.SerDes_Toolbox_Interface_for_SiSoft_Quantum_Channel_Designer_and_QSI_Software +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Real-Time_QNX_Target_Support +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.WINNER_II_Channel_Model_for_Communications_Toolbox + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMjBh diff --git a/mpm-input-files/R2020b/mpm_input_r2020b.txt b/mpm-input-files/R2020b/mpm_input_r2020b.txt new file mode 100644 index 0000000..43466ed --- /dev/null +++ b/mpm-input-files/R2020b/mpm_input_r2020b.txt @@ -0,0 +1,342 @@ +######################################################################## +## Configuration File for Installing R2020b MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2020b +## MathWorks products and support packages. +## +## To install a specific update for R2020b, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DO_Qualification_Kit +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_HDL_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_Toolbox +#product.Lidar_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.MATLAB_Web_App_Server +#product.Mapping_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Motor_Control_Blockset +#product.Navigation_Toolbox +#product.OPC_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Radar_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Compiler +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Requirements +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.Trading_Toolbox +#product.UAV_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox +#product.Wireless_HDL_Toolbox + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product._GPU_Coder_Support_Package_for_NVIDIA_GPUs_ +#product.Aerospace_Blockset_CubeSat_Simulation_Library +#product.Automated_Driving_Toolbox_Interface_for_Unreal_Engine_4_Projects +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.Communications_Toolbox_Library_for_the_Bluetooth_Protocol +#product.Communications_Toolbox_Library_for_the_NFC_Protocol +#product.Communications_Toolbox_Library_for_the_ZigBee_Protocol +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_MATLAB +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_Simulink +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Computer_Vision_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Apache_Cassandra_Database +#product.Database_Toolbox_Interface_for_MongoDB +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Intel_FPGA_and_SoC_Devices +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Xilinx_FPGA_and_SoC_Devices +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Importer_for_Tensorflow-Keras_Models +#product.Deep_Learning_Toolbox_Model_Quantization_Library +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-19_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-53_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_EfficientNet-b0_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_Discovery_Boards +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_F28M3x_Concerto_Processors +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Processing_Toolbox_Hyperspectral_Imaging_Library +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.Lidar_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Model_Risk_Manager_for_MATLAB +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_AWS_Batch +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_HTCondor +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.Robotics_System_Toolbox_Support_Package_for_Manipulators +#product.SerDes_Toolbox_Interface_for_SiSoft_Quantum_Channel_Designer_and_QSI_Software +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NVIDIA_Jetson_CPUs +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.SoC_Blockset_Support_Package_for_Embedded_Linux_Devices +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Texas_Instruments_C2000_Processors +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.UAV_Toolbox_Interface_for_Unreal_Engine_Projects +#product.UAV_Toolbox_Support_Package_for_PX4_Autopilots +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.WINNER_II_Channel_Model_for_Communications_Toolbox + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMjBi diff --git a/mpm-input-files/R2021a/mpm_input_r2021a.txt b/mpm-input-files/R2021a/mpm_input_r2021a.txt new file mode 100644 index 0000000..ff2fb0b --- /dev/null +++ b/mpm-input-files/R2021a/mpm_input_r2021a.txt @@ -0,0 +1,346 @@ +######################################################################## +## Configuration File for Installing R2021a MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2021a +## MathWorks products and support packages. +## +## To install a specific update for R2021a, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DDS_Blockset +#product.DO_Qualification_Kit +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_HDL_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_Toolbox +#product.Lidar_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.MATLAB_Web_App_Server +#product.Mapping_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Motor_Control_Blockset +#product.Navigation_Toolbox +#product.OPC_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Radar_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Satellite_Communications_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Compiler +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Requirements +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.UAV_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox +#product.Wireless_HDL_Toolbox + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product.Automated_Driving_Toolbox_Importer_for_Zenrin_Japan_Map_API_3.0_(Itsumo_NAVI_API_3.0)_Service +#product.Automated_Driving_Toolbox_Interface_for_Unreal_Engine_4_Projects +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.Communications_Toolbox_Library_for_the_Bluetooth_Protocol +#product.Communications_Toolbox_Library_for_the_NFC_Protocol +#product.Communications_Toolbox_Library_for_the_ZigBee_Protocol +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Component_Deployment_Guideline_for_Embedded_Coder +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_MATLAB +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_Simulink +#product.Computer_Vision_Toolbox_Model_for_YOLO_v3_Object_Detection +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Apache_Cassandra_Database +#product.Database_Toolbox_Interface_for_MongoDB +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Intel_FPGA_and_SoC_Devices +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Xilinx_FPGA_and_SoC_Devices +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_TensorFlow_models +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Model_Quantization_Library +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-19_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-53_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_EfficientNet-b0_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_Discovery_Boards +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_F28M3x_Concerto_Processors +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_RFSoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Processing_Toolbox_Hyperspectral_Imaging_Library +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.Lidar_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Coder_Support_Package_for_NVIDIA_Jetson_and_NVIDIA_DRIVE_Platforms +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Model_Risk_Manager_for_MATLAB +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_AWS_Batch +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_HTCondor +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.Robotics_System_Toolbox_Support_Package_for_Manipulators +#product.SerDes_Toolbox_Interface_for_SiSoft_Quantum_Channel_Designer_and_QSI_Software +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NVIDIA_Jetson_CPUs +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.SoC_Blockset_Support_Package_for_Embedded_Linux_Devices +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Texas_Instruments_C2000_Processors +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.UAV_Toolbox_Interface_for_Unreal_Engine_Projects +#product.UAV_Toolbox_Support_Package_for_PX4_Autopilots +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.Vision_HDL_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.WINNER_II_Channel_Model_for_Communications_Toolbox + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMjFh diff --git a/mpm-input-files/R2021b/mpm_input_r2021b.txt b/mpm-input-files/R2021b/mpm_input_r2021b.txt new file mode 100644 index 0000000..0c7f1a9 --- /dev/null +++ b/mpm-input-files/R2021b/mpm_input_r2021b.txt @@ -0,0 +1,356 @@ +######################################################################## +## Configuration File for Installing R2021b MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2021b +## MathWorks products and support packages. +## +## To install a specific update for R2021b, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DDS_Blockset +#product.DO_Qualification_Kit +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_HDL_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_Toolbox +#product.Lidar_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.MATLAB_Web_App_Server +#product.Mapping_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Motor_Control_Blockset +#product.Navigation_Toolbox +#product.OPC_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_PCB_Toolbox +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Radar_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Satellite_Communications_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Integrity_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Compiler +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Requirements +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.UAV_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox +#product.Wireless_HDL_Toolbox + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product.Aerospace_Blockset_Interface_for_Unreal_Engine_Projects +#product.Automated_Driving_Toolbox_Importer_for_Zenrin_Japan_Map_API_3.0_(Itsumo_NAVI_API_3.0)_Service +#product.Automated_Driving_Toolbox_Interface_for_Unreal_Engine_4_Projects +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.Communications_Toolbox_Library_for_ZigBee_and_UWB +#product.Communications_Toolbox_Library_for_the_Bluetooth_Protocol +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Component_Deployment_Guideline_for_Embedded_Coder +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_MATLAB +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_Simulink +#product.Computer_Vision_Toolbox_Model_for_Inflated-3D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Mask_R-CNN_Instance_Segmentation +#product.Computer_Vision_Toolbox_Model_for_R(2+1)D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_SlowFast_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_YOLO_v3_Object_Detection +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Apache_Cassandra +#product.Database_Toolbox_Interface_for_MongoDB +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Intel_FPGA_and_SoC_Devices +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Xilinx_FPGA_and_SoC_Devices +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_TensorFlow_models +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Model_Quantization_Library +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-19_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-53_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_EfficientNet-b0_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_Discovery_Boards +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_F28M3x_Concerto_Processors +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_RFSoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Processing_Toolbox_Hyperspectral_Imaging_Library +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.Lidar_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Coder_Support_Package_for_NVIDIA_Jetson_and_NVIDIA_DRIVE_Platforms +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Model_Risk_Manager_for_MATLAB +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_AWS_Batch +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_HTCondor +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.Robotics_System_Toolbox_Robot_Library_Data +#product.Robotics_System_Toolbox_Support_Package_for_Manipulators +#product.SerDes_Toolbox_Interface_for_SiSoft_Quantum_Channel_Designer_and_QSI_Software +#product.Signal_Processing_Toolbox_Support_Package_for_Linux_IIO_Devices +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Interface_for_Siemens_MF-Tyre/MF-Swift_Tire_Model +#product.Simulink_Real-Time_XIL_Support_Package +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.SoC_Blockset_Support_Package_for_Embedded_Linux_Devices +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Texas_Instruments_C2000_Processors +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Streaming_Data_Framework_for_MATLAB_Production_Server +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.UAV_Toolbox_Interface_for_Unreal_Engine_Projects +#product.UAV_Toolbox_Support_Package_for_PX4_Autopilots +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.Vision_HDL_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.WINNER_II_Channel_Model_for_Communications_Toolbox + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMjFi diff --git a/mpm-input-files/R2022a/mpm_input_r2022a.txt b/mpm-input-files/R2022a/mpm_input_r2022a.txt new file mode 100644 index 0000000..687a5a3 --- /dev/null +++ b/mpm-input-files/R2022a/mpm_input_r2022a.txt @@ -0,0 +1,366 @@ +######################################################################## +## Configuration File for Installing R2022a MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2022a +## MathWorks products and support packages. +## +## To install a specific update for R2022a, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Bluetooth_Toolbox +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DDS_Blockset +#product.DO_Qualification_Kit +#product.DSP_HDL_Toolbox +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_HDL_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Industrial_Communication_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_Toolbox +#product.Lidar_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.MATLAB_Web_App_Server +#product.Mapping_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Motor_Control_Blockset +#product.Navigation_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_PCB_Toolbox +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Radar_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Requirements_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Satellite_Communications_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Integrity_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Compiler +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.UAV_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox +#product.Wireless_HDL_Toolbox +#product.Wireless_Testbench + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product.Aerospace_Blockset_Interface_for_Unreal_Engine_Projects +#product.Automated_Driving_Toolbox_Importer_for_Zenrin_Japan_Map_API_3.0_(Itsumo_NAVI_API_3.0)_Service +#product.Automated_Driving_Toolbox_Interface_for_Unreal_Engine_4_Projects +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.CI/CD_Automation_for_Simulink_Check +#product.Communications_Toolbox_Library_for_ZigBee_and_UWB +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Component_Deployment_Guideline_for_Embedded_Coder +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_MATLAB +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_Simulink +#product.Computer_Vision_Toolbox_Model_for_Inflated-3D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Mask_R-CNN_Instance_Segmentation +#product.Computer_Vision_Toolbox_Model_for_R(2+1)D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_SlowFast_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Text_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v3_Object_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v4_Object_Detection +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Apache_Cassandra +#product.Database_Toolbox_Interface_for_MongoDB +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Intel_FPGA_and_SoC_Devices +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Xilinx_FPGA_and_SoC_Devices +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_TensorFlow_models +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Interface_for_TensorFlow_Lite +#product.Deep_Learning_Toolbox_Model_Quantization_Library +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-19_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-53_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_EfficientNet-b0_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_For_Linux_Applications +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_STM32_Processors +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Microchip_FPGA_and_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_RFSoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Processing_Toolbox_Hyperspectral_Imaging_Library +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_IVI_and_VXIplug&play_Drivers +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.Lidar_Toolbox_Support_Package_for_Ouster_Lidar_Sensors +#product.Lidar_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Coder_Interface_for_Visual_Studio_Code_Debugging +#product.MATLAB_Coder_Support_Package_for_NVIDIA_Jetson_and_NVIDIA_DRIVE_Platforms +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Model_Risk_Manager_for_MATLAB +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_AWS_Batch +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_HTCondor +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.Robotics_System_Toolbox_Robot_Library_Data +#product.Robotics_System_Toolbox_Support_Package_for_Manipulators +#product.SerDes_Toolbox_Interface_for_SiSoft_Quantum_Channel_Designer_and_QSI_Software +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Interface_for_Siemens_MF-Tyre/MF-Swift_Tire_Model +#product.Simulink_Real-Time_XIL_Support_Package +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.Simulink_Test_Support_Package_for_ASAM_XIL +#product.SoC_Blockset_Support_Package_for_Embedded_Linux_Devices +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Texas_Instruments_C2000_Processors +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.UAV_Toolbox_Interface_for_Unreal_Engine_Projects +#product.UAV_Toolbox_Support_Package_for_PX4_Autopilots +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.Vision_HDL_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.WINNER_II_Channel_Model_for_Communications_Toolbox +#product.Wireless_Testbench_Support_Package_for_NI_USRP_Radios + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMjJh diff --git a/mpm-input-files/R2022b/mpm_input_r2022b.txt b/mpm-input-files/R2022b/mpm_input_r2022b.txt new file mode 100644 index 0000000..28d098e --- /dev/null +++ b/mpm-input-files/R2022b/mpm_input_r2022b.txt @@ -0,0 +1,378 @@ +######################################################################## +## Configuration File for Installing R2022b MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2022b +## MathWorks products and support packages. +## +## To install a specific update for R2022b, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Bluetooth_Toolbox +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DDS_Blockset +#product.DO_Qualification_Kit +#product.DSP_HDL_Toolbox +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_HDL_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Industrial_Communication_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_Toolbox +#product.Lidar_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.MATLAB_Web_App_Server +#product.Mapping_Toolbox +#product.Medical_Imaging_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Motor_Control_Blockset +#product.Navigation_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_PCB_Toolbox +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Radar_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Requirements_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Satellite_Communications_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Integrity_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Battery +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Compiler +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.UAV_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox +#product.Wireless_HDL_Toolbox +#product.Wireless_Testbench + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product.Aerospace_Blockset_Interface_for_Unreal_Engine_Projects +#product.Automated_Driving_Toolbox_Importer_for_Zenrin_Japan_Map_API_3.0_(Itsumo_NAVI_API_3.0)_Service +#product.Automated_Driving_Toolbox_Interface_for_Unreal_Engine_4_Projects +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.CI/CD_Automation_for_Simulink_Check +#product.Communications_Toolbox_Library_for_ZigBee_and_UWB +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Component_Deployment_Guideline_for_Embedded_Coder +#product.Computer_Vision_Toolbox_Automated_Visual_Inspection_Library +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_MATLAB +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_Simulink +#product.Computer_Vision_Toolbox_Model_for_Inflated-3D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Mask_R-CNN_Instance_Segmentation +#product.Computer_Vision_Toolbox_Model_for_R(2+1)D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_SSD_Object_Detection +#product.Computer_Vision_Toolbox_Model_for_SlowFast_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Text_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v2_Object_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v3_Object_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v4_Object_Detection +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Intel_FPGA_and_SoC_Devices +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Xilinx_FPGA_and_SoC_Devices +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_PyTorch_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_TensorFlow_models +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Interface_for_TensorFlow_Lite +#product.Deep_Learning_Toolbox_Model_Quantization_Library +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-19_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-53_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_EfficientNet-b0_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Deep_Learning_Toolbox_Verification_Library +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_For_Linux_Applications +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Infineon_AURIX_TC4x_Microcontrollers +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_STM32_Processors +#product.Embedded_Coder_Support_Package_for_Texas_Instruments_C2000_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Microchip_FPGA_and_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_RFSoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Processing_Toolbox_Hyperspectral_Imaging_Library +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_IVI_and_VXIplug&play_Drivers +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.Lidar_Toolbox_Support_Package_for_Ouster_Lidar_Sensors +#product.Lidar_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Coder_Interface_for_Visual_Studio_Code_Debugging +#product.MATLAB_Coder_Support_Package_for_NVIDIA_Jetson_and_NVIDIA_DRIVE_Platforms +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Model_Risk_Manager_for_MATLAB +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_AWS_Batch +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_HTCondor +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.Robotics_System_Toolbox_Robot_Library_Data +#product.Robotics_System_Toolbox_Support_Package_for_KINOVA_Gen3_Manipulators +#product.Robotics_System_Toolbox_Support_Package_for_Universal_Robots_UR_Series_Manipulators +#product.Scenario_Builder_for_Automated_Driving_Toolbox +#product.Scenario_Variant_Generator_for_Automated_Driving_Toolbox +#product.Signal_Processing_Toolbox_Support_Package_for_Linux_IIO_Devices +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Interface_for_Siemens_MF-Tyre/MF-Swift_Tire_Model +#product.Simulink_Real-Time_XIL_Support_Package +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.Simulink_Test_Support_Package_for_ASAM_XIL +#product.SoC_Blockset_Support_Package_for_Embedded_Linux_Devices +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Texas_Instruments_C2000_Processors +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Streaming_Data_Framework_for_MATLAB_Production_Server +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.Text_Analytics_Toolbox_Model_from_UDify_Data +#product.UAV_Toolbox_Interface_for_Unreal_Engine_Projects +#product.UAV_Toolbox_Support_Package_for_PX4_Autopilots +#product.Variant_Manager_for_Simulink +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.Vision_HDL_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.WINNER_II_Channel_Model_for_Communications_Toolbox +#product.Wireless_Testbench_Support_Package_for_NI_USRP_Radios + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMjJi diff --git a/mpm-input-files/R2023a/mpm_input_r2023a.txt b/mpm-input-files/R2023a/mpm_input_r2023a.txt new file mode 100644 index 0000000..604e25a --- /dev/null +++ b/mpm-input-files/R2023a/mpm_input_r2023a.txt @@ -0,0 +1,383 @@ +######################################################################## +## Configuration File for Installing R2023a MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2023a +## MathWorks products and support packages. +## +## To install a specific update for R2023a, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Bluetooth_Toolbox +#product.C2000_Microcontroller_Blockset +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DDS_Blockset +#product.DO_Qualification_Kit +#product.DSP_HDL_Toolbox +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_HDL_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Industrial_Communication_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_Toolbox +#product.Lidar_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.MATLAB_Test +#product.MATLAB_Web_App_Server +#product.Mapping_Toolbox +#product.Medical_Imaging_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Motor_Control_Blockset +#product.Navigation_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_PCB_Toolbox +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Radar_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Requirements_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Satellite_Communications_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Integrity_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Battery +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Compiler +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.UAV_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox +#product.Wireless_HDL_Toolbox +#product.Wireless_Testbench + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product.Aerospace_Blockset_Interface_for_Unreal_Engine_Projects +#product.Automated_Driving_Toolbox_Importer_for_Zenrin_Japan_Map_API_3.0_(Itsumo_NAVI_API_3.0)_Service +#product.Automated_Driving_Toolbox_Interface_for_Unreal_Engine_4_Projects +#product.Bioinformatics_Toolbox_Interface_for_Bowtie_Aligner +#product.CI/CD_Automation_for_Simulink_Check +#product.Communications_Toolbox_Library_for_ZigBee_and_UWB +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Communications_Toolbox_Wireless_Network_Simulation_Library +#product.Component_Deployment_Guideline_for_Embedded_Coder +#product.Computer_Vision_Toolbox_Automated_Visual_Inspection_Library +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_MATLAB +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_Simulink +#product.Computer_Vision_Toolbox_Model_for_Inflated-3D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Mask_R-CNN_Instance_Segmentation +#product.Computer_Vision_Toolbox_Model_for_R(2+1)D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_SlowFast_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Text_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v2_Object_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v3_Object_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v4_Object_Detection +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Intel_FPGA_and_SoC_Devices +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Xilinx_FPGA_and_SoC_Devices +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_PyTorch_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_TensorFlow_models +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Interface_for_TensorFlow_Lite +#product.Deep_Learning_Toolbox_Model_Quantization_Library +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-19_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-53_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_EfficientNet-b0_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Deep_Learning_Toolbox_Verification_Library +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_For_Linux_Applications +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Infineon_AURIX_TC4x_Microcontrollers +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_STM32_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Microchip_FPGA_and_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_RFSoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Processing_Toolbox_Hyperspectral_Imaging_Library +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_IVI_and_VXIplug&play_Drivers +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.Integro-Differential_Modeling_Framework_for_MATLAB +#product.Lidar_Toolbox_Support_Package_for_Ouster_Lidar_Sensors +#product.Lidar_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Coder_Interface_for_Visual_Studio_Code_Debugging +#product.MATLAB_Coder_Support_Package_for_NVIDIA_Jetson_and_NVIDIA_DRIVE_Platforms +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Quantum_Computing +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Mixed-Signal_Blockset_Models +#product.Modelscape_for_MATLAB +#product.Multi-Version_Co-Simulation_for_Simulink +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_AWS_Batch +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Grid_Engine +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_HTCondor +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_IBM_Platform_LSF +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_PBS +#product.Parallel_Computing_Toolbox_plugin_for_MATLAB_Parallel_Server_with_Slurm +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.Robotics_System_Toolbox_Robot_Library_Data +#product.Robotics_System_Toolbox_Support_Package_for_KINOVA_Gen3_Manipulators +#product.Robotics_System_Toolbox_Support_Package_for_Universal_Robots_UR_Series_Manipulators +#product.Scenario_Builder_for_Automated_Driving_Toolbox +#product.Scenario_Variant_Generator_for_Automated_Driving_Toolbox +#product.Signal_Processing_Toolbox_Support_Package_for_Linux_IIO_Devices +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Interface_for_Siemens_MF-Tyre/MF-Swift_Tire_Model +#product.Simulink_Real-Time_XIL_Support_Package +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Apple_iOS_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.Simulink_Test_Support_Package_for_ASAM_XIL +#product.SoC_Blockset_Support_Package_for_AMD-Xilinx_Versal_ACAP_Devices +#product.SoC_Blockset_Support_Package_for_Embedded_Linux_Devices +#product.SoC_Blockset_Support_Package_for_Infineon_AURIX_Microcontrollers +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Streaming_Data_Framework_for_MATLAB_Production_Server +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.Text_Analytics_Toolbox_Model_from_UDify_Data +#product.UAV_Toolbox_Interface_for_Unreal_Engine_Projects +#product.UAV_Toolbox_Support_Package_for_PX4_Autopilots +#product.Variant_Manager_for_Simulink +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vehicle_Network_Toolbox_Support_Package_for_Kvaser_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_National_Instruments_NI-XNET_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_PEAK-System_CAN_devices +#product.Vehicle_Network_Toolbox_Support_Package_for_Vector_CAN_devices +#product.Vision_HDL_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.WINNER_II_Channel_Model_for_Communications_Toolbox +#product.Wireless_Testbench_Support_Package_for_NI_USRP_Radios + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMjNh diff --git a/mpm-input-files/R2023b/mpm_input_r2023b.txt b/mpm-input-files/R2023b/mpm_input_r2023b.txt new file mode 100644 index 0000000..4ec5db5 --- /dev/null +++ b/mpm-input-files/R2023b/mpm_input_r2023b.txt @@ -0,0 +1,386 @@ +######################################################################## +## Configuration File for Installing R2023b MathWorks Products +######################################################################## +## +## Use this file to configure an installation of MathWorks products +## and support packages from the command line using the +## MATLAB Package Manager (mpm). For example, you can set the +## products and support packages you want to install and the +## folder where you want to install them. +## +## To configure your MATLAB installation: +## +## 1. Set configuration parameters by uncommenting lines that +## start with a single '#' and updating the values. The +## comments above each parameter describe the valid values. +## +## 2. Run mpm from the command line, using the --inputfile option +## to specify the full path to this configuration file. +## +## mpm install --inputfile +## +## You can download template input files for all supported releases from +## https://github.com/mathworks-ref-arch/matlab-dockerfile/blob/main/MPM.md +## +######################################################################## + + +######################################################################## +## RELEASE +######################################################################## +## +## By default, mpm installs the latest versions of R2023b +## MathWorks products and support packages. +## +## To install a specific update for R2023b, set the desired update +## number (for example, 1, 2, 3, and so on) and uncomment the +## following line. An updateLevel of 0 installs the general release. + +# updateLevel=0 + + +######################################################################## +## SPECIFY DESTINATION FOLDER +######################################################################## +## +## Specify the full path to the folder where you want to install MATLAB. +## If you are adding products or support packages to an existing MATLAB +## installation, specify the full path to the folder where MATLAB is installed. +## +## Example: +## (Windows) destinationFolder=C:\Program Files\MATLAB\RXXXX +## (Linux) destinationFolder=/usr/local/RXXXX +## (macOS) destinationFolder=/Applications +## +## Set the desired value for destinationFolder and +## uncomment the following line. + +# destinationFolder= + + +######################################################################## +## INSTALL PRODUCTS +######################################################################## +## +## Uncomment the lines for the products you want to install. + +#product.5G_Toolbox +#product.AUTOSAR_Blockset +#product.Aerospace_Blockset +#product.Aerospace_Toolbox +#product.Antenna_Toolbox +#product.Audio_Toolbox +#product.Automated_Driving_Toolbox +#product.Bioinformatics_Toolbox +#product.Bluetooth_Toolbox +#product.C2000_Microcontroller_Blockset +#product.Communications_Toolbox +#product.Computer_Vision_Toolbox +#product.Control_System_Toolbox +#product.Curve_Fitting_Toolbox +#product.DDS_Blockset +#product.DO_Qualification_Kit +#product.DSP_HDL_Toolbox +#product.DSP_System_Toolbox +#product.Data_Acquisition_Toolbox +#product.Database_Toolbox +#product.Datafeed_Toolbox +#product.Deep_Learning_HDL_Toolbox +#product.Deep_Learning_Toolbox +#product.Econometrics_Toolbox +#product.Embedded_Coder +#product.Filter_Design_HDL_Coder +#product.Financial_Instruments_Toolbox +#product.Financial_Toolbox +#product.Fixed-Point_Designer +#product.Fuzzy_Logic_Toolbox +#product.GPU_Coder +#product.Global_Optimization_Toolbox +#product.HDL_Coder +#product.HDL_Verifier +#product.IEC_Certification_Kit +#product.Image_Acquisition_Toolbox +#product.Image_Processing_Toolbox +#product.Industrial_Communication_Toolbox +#product.Instrument_Control_Toolbox +#product.LTE_Toolbox +#product.Lidar_Toolbox +#product.MATLAB +#product.MATLAB_Coder +#product.MATLAB_Compiler +#product.MATLAB_Compiler_SDK +#product.MATLAB_Parallel_Server +#product.MATLAB_Production_Server +#product.MATLAB_Report_Generator +#product.MATLAB_Test +#product.MATLAB_Web_App_Server +#product.Mapping_Toolbox +#product.Medical_Imaging_Toolbox +#product.Mixed-Signal_Blockset +#product.Model_Predictive_Control_Toolbox +#product.Model-Based_Calibration_Toolbox +#product.Motor_Control_Blockset +#product.Navigation_Toolbox +#product.Optimization_Toolbox +#product.Parallel_Computing_Toolbox +#product.Partial_Differential_Equation_Toolbox +#product.Phased_Array_System_Toolbox +#product.Polyspace_Bug_Finder +#product.Polyspace_Bug_Finder_Server +#product.Polyspace_Code_Prover +#product.Polyspace_Code_Prover_Server +#product.Polyspace_Test +#product.Powertrain_Blockset +#product.Predictive_Maintenance_Toolbox +#product.RF_Blockset +#product.RF_PCB_Toolbox +#product.RF_Toolbox +#product.ROS_Toolbox +#product.Radar_Toolbox +#product.Reinforcement_Learning_Toolbox +#product.Requirements_Toolbox +#product.Risk_Management_Toolbox +#product.Robotics_System_Toolbox +#product.Robust_Control_Toolbox +#product.Satellite_Communications_Toolbox +#product.Sensor_Fusion_and_Tracking_Toolbox +#product.SerDes_Toolbox +#product.Signal_Integrity_Toolbox +#product.Signal_Processing_Toolbox +#product.SimBiology +#product.SimEvents +#product.Simscape +#product.Simscape_Battery +#product.Simscape_Driveline +#product.Simscape_Electrical +#product.Simscape_Fluids +#product.Simscape_Multibody +#product.Simulink +#product.Simulink_3D_Animation +#product.Simulink_Check +#product.Simulink_Code_Inspector +#product.Simulink_Coder +#product.Simulink_Compiler +#product.Simulink_Control_Design +#product.Simulink_Coverage +#product.Simulink_Design_Optimization +#product.Simulink_Design_Verifier +#product.Simulink_Desktop_Real-Time +#product.Simulink_Fault_Analyzer +#product.Simulink_PLC_Coder +#product.Simulink_Real-Time +#product.Simulink_Report_Generator +#product.Simulink_Test +#product.SoC_Blockset +#product.Spreadsheet_Link +#product.Stateflow +#product.Statistics_and_Machine_Learning_Toolbox +#product.Symbolic_Math_Toolbox +#product.System_Composer +#product.System_Identification_Toolbox +#product.Text_Analytics_Toolbox +#product.UAV_Toolbox +#product.Vehicle_Dynamics_Blockset +#product.Vehicle_Network_Toolbox +#product.Vision_HDL_Toolbox +#product.WLAN_Toolbox +#product.Wavelet_Toolbox +#product.Wireless_HDL_Toolbox +#product.Wireless_Testbench + + +######################################################################## +## INSTALL SUPPORT PACKAGES +######################################################################## +## +## Uncomment the lines for the support packages you want to install. + +#product._Automated_Driving_Toolbox_Model_for_Lidar_Lane_Detection +#product.ASIC_Testbench_for_HDL_Verifier +#product.Aerospace_Blockset_Interface_for_Unreal_Engine_Projects +#product.Automated_Driving_Toolbox_Importer_for_Zenrin_Japan_Map_API_3.0_(Itsumo_NAVI_API_3.0)_Service +#product.Automated_Driving_Toolbox_Interface_for_Unreal_Engine_4_Projects +#product.CI/CD_Automation_for_Simulink_Check +#product.Communications_Toolbox_Support_Package_for_Analog_Devices_ADALM-Pluto_Radio +#product.Communications_Toolbox_Support_Package_for_RTL-SDR_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Embedded_Series_Radio +#product.Communications_Toolbox_Support_Package_for_USRP_Radio +#product.Communications_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Radio +#product.Communications_Toolbox_Wireless_Network_Simulation_Library +#product.Component_Deployment_Guideline_for_Embedded_Coder +#product.Computer_Vision_Toolbox_Automated_Visual_Inspection_Library +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_MATLAB +#product.Computer_Vision_Toolbox_Interface_for_OpenCV_in_Simulink +#product.Computer_Vision_Toolbox_Model_for_Inflated-3D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Mask_R-CNN_Instance_Segmentation +#product.Computer_Vision_Toolbox_Model_for_Object_Keypoint_Detection +#product.Computer_Vision_Toolbox_Model_for_R(2+1)D_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_SOLOv2_Instance_Segmentation +#product.Computer_Vision_Toolbox_Model_for_SlowFast_Video_Classification +#product.Computer_Vision_Toolbox_Model_for_Text_Detection +#product.Computer_Vision_Toolbox_Model_for_Vision_Transformer_Network +#product.Computer_Vision_Toolbox_Model_for_YOLO_v2_Object_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v3_Object_Detection +#product.Computer_Vision_Toolbox_Model_for_YOLO_v4_Object_Detection +#product.Computer_Vision_Toolbox_OCR_Language_Data +#product.Data_Acquisition_Toolbox_Support_Package_for_Analog_Devices_ADALM1000_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Digilent_Analog_Discovery_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_Measurement_Computing_Hardware +#product.Data_Acquisition_Toolbox_Support_Package_for_National_Instruments_NI-DAQmx_Devices +#product.Data_Acquisition_Toolbox_Support_Package_for_Windows_Sound_Cards +#product.Database_Toolbox_Interface_for_Neo4j_Bolt_Protocol +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Intel_FPGA_and_SoC_Devices +#product.Deep_Learning_HDL_Toolbox_Support_Package_for_Xilinx_FPGA_and_SoC_Devices +#product.Deep_Learning_Toolbox_Converter_for_ONNX_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_PyTorch_Model_Format +#product.Deep_Learning_Toolbox_Converter_for_TensorFlow_models +#product.Deep_Learning_Toolbox_Importer_for_Caffe_Models +#product.Deep_Learning_Toolbox_Interface_for_TensorFlow_Lite +#product.Deep_Learning_Toolbox_Model_Quantization_Library +#product.Deep_Learning_Toolbox_Model_for_AlexNet_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-19_Network +#product.Deep_Learning_Toolbox_Model_for_DarkNet-53_Network +#product.Deep_Learning_Toolbox_Model_for_DenseNet-201_Network +#product.Deep_Learning_Toolbox_Model_for_EfficientNet-b0_Network +#product.Deep_Learning_Toolbox_Model_for_GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-ResNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_Inception-v3_Network +#product.Deep_Learning_Toolbox_Model_for_MobileNet-v2_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Large_Network +#product.Deep_Learning_Toolbox_Model_for_NASNet-Mobile_Network +#product.Deep_Learning_Toolbox_Model_for_Places365-GoogLeNet_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-101_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-18_Network +#product.Deep_Learning_Toolbox_Model_for_ResNet-50_Network +#product.Deep_Learning_Toolbox_Model_for_ShuffleNet_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-16_Network +#product.Deep_Learning_Toolbox_Model_for_VGG-19_Network +#product.Deep_Learning_Toolbox_Model_for_Xception_Network +#product.Deep_Learning_Toolbox_Verification_Library +#product.Embedded_Coder_Interface_to_QEMU_Emulator +#product.Embedded_Coder_Support_Package_For_Linux_Applications +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-A_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-M_Processors +#product.Embedded_Coder_Support_Package_for_ARM_Cortex-R_Processors +#product.Embedded_Coder_Support_Package_for_BeagleBone_Black_Hardware +#product.Embedded_Coder_Support_Package_for_Infineon_AURIX_TC4x_Microcontrollers +#product.Embedded_Coder_Support_Package_for_Intel_SoC_Devices +#product.Embedded_Coder_Support_Package_for_STMicroelectronics_STM32_Processors +#product.Embedded_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.Ephemeris_Data_for_Aerospace_Toolbox +#product.Extended_Tire_Features_for_Vehicle_Dynamics_Blockset +#product.FMU_Builder_For_Simulink +#product.GPU_Coder_Interface_for_Deep_Learning_Libraries +#product.GUIDE_to_App_Designer_Migration_Tool_for_MATLAB +#product.Geoid_Data_for_Aerospace_Toolbox +#product.HDL_Coder_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Intel_SoC_Devices +#product.HDL_Coder_Support_Package_for_Microchip_FPGA_and_SoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_FPGA_Boards +#product.HDL_Coder_Support_Package_for_Xilinx_RFSoC_Devices +#product.HDL_Coder_Support_Package_for_Xilinx_Zynq_Platform +#product.HDL_Verifier_Support_Package_for_Intel_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Microsemi_FPGA_Boards +#product.HDL_Verifier_Support_Package_for_Xilinx_FPGA_Boards +#product.Image_Acquisition_Toolbox_Support_Package_for_DCAM_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Kinect_for_Windows_Sensor +#product.Image_Acquisition_Toolbox_Support_Package_for_Matrox_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_National_Instruments_Frame_Grabbers +#product.Image_Acquisition_Toolbox_Support_Package_for_OS_Generic_Video_Interface +#product.Image_Acquisition_Toolbox_Support_Package_for_Point_Grey_Hardware +#product.Image_Acquisition_Toolbox_Support_Package_for_Teledyne_DALSA_Sapera_Hardware +#product.Image_Processing_Toolbox_Hyperspectral_Imaging_Library +#product.Image_Processing_Toolbox_Image_Data +#product.Instrument_Control_Toolbox_Support_Package_for_IVI_and_VXIplug&play_Drivers +#product.Instrument_Control_Toolbox_Support_Package_for_Keysight_(Agilent)_IO_Libraries_and_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-845x_I2C/SPI_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DCPower_Power_Supplies +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-DMM_Digital_Multimeters +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-FGEN_Function_Generators +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SCOPE_Oscilloscopes +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_NI-SWITCH_Hardware +#product.Instrument_Control_Toolbox_Support_Package_for_National_Instruments_VISA_and_ICP_Interfaces +#product.Instrument_Control_Toolbox_Support_Package_for_Rohde_Schwarz_VISA_Interface +#product.Instrument_Control_Toolbox_Support_Package_for_Total_Phase_Aardvark_I2C/SPI_Interface +#product.Integro-Differential_Modeling_Framework_for_MATLAB +#product.Lidar_Toolbox_Support_Package_for_Ouster_Lidar_Sensors +#product.Lidar_Toolbox_Support_Package_for_Velodyne_LiDAR_Sensors +#product.MATLAB_Basemap_Data_-_bluegreen +#product.MATLAB_Basemap_Data_-_colorterrain +#product.MATLAB_Basemap_Data_-_grayland +#product.MATLAB_Basemap_Data_-_grayterrain +#product.MATLAB_Basemap_Data_-_landcover +#product.MATLAB_Client_for_MATLAB_Production_Server +#product.MATLAB_Coder_Interface_for_Deep_Learning_Libraries +#product.MATLAB_Coder_Interface_for_Visual_Studio_Code_Debugging +#product.MATLAB_Coder_Support_Package_for_NVIDIA_Jetson_and_NVIDIA_DRIVE_Platforms +#product.MATLAB_Support_Package_for_Android_Sensors +#product.MATLAB_Support_Package_for_Apple_iOS_Sensors +#product.MATLAB_Support_Package_for_Arduino_Hardware +#product.MATLAB_Support_Package_for_BeagleBone_Black_Hardware +#product.MATLAB_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.MATLAB_Support_Package_for_Quantum_Computing +#product.MATLAB_Support_Package_for_Raspberry_Pi_Hardware +#product.MATLAB_Support_Package_for_USB_Webcams +#product.MATLAB_Support_for_MinGW-w64_C/C++_Compiler +#product.Medical_Imaging_Toolbox_Interface_for_Cellpose_ +#product.Mixed-Signal_Blockset_Models +#product.Modelscape_for_MATLAB +#product.Powertrain_Blockset_Drive_Cycle_Data +#product.RF_Blockset_Models_for_Analog_Devices_RF_Transceivers +#product.ROS_Toolbox_Support_Package_for_TurtleBot-Based_Robots +#product.Radar_Toolbox_Support_Package_for_Texas_Instruments_mmWave_Radar_Sensors +#product.Robotics_System_Toolbox_Robot_Library_Data +#product.Robotics_System_Toolbox_Support_Package_for_KINOVA_Gen3_Manipulators +#product.Robotics_System_Toolbox_Support_Package_for_Universal_Robots_UR_Series_Manipulators +#product.Scenario_Builder_for_Automated_Driving_Toolbox +#product.Scenario_Variant_Generator_for_Automated_Driving_Toolbox +#product.Signal_Processing_Toolbox_Support_Package_for_Linux_IIO_Devices +#product.Simulink_Coder_Support_Package_for_ARM_Cortex-based_VEX_Microcontroller +#product.Simulink_Coder_Support_Package_for_BeagleBone_Blue_Hardware +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-K64F_Board +#product.Simulink_Coder_Support_Package_for_NXP_FRDM-KL25Z_Board +#product.Simulink_Coder_Support_Package_for_STMicroelectronics_Nucleo_Boards +#product.Simulink_Coder_Support_Package_for_VEX_EDR_V5_Robot_Brain +#product.Simulink_Interface_for_Siemens_MF-Tyre/MF-Swift_Tire_Model +#product.Simulink_Real-Time_XIL_Support_Package +#product.Simulink_Support_Package_for_Android_Devices +#product.Simulink_Support_Package_for_Arduino_Hardware +#product.Simulink_Support_Package_for_LEGO_MINDSTORMS_EV3_Hardware +#product.Simulink_Support_Package_for_Parrot_Minidrones +#product.Simulink_Support_Package_for_Raspberry_Pi_Hardware +#product.Simulink_Test_Support_Package_for_ASAM_XIL +#product.SoC_Blockset_Support_Package_for_AMD-Xilinx_Versal_ACAP_Devices +#product.SoC_Blockset_Support_Package_for_Embedded_Linux_Devices +#product.SoC_Blockset_Support_Package_for_Infineon_AURIX_Microcontrollers +#product.SoC_Blockset_Support_Package_for_Intel_Devices +#product.SoC_Blockset_Support_Package_for_Xilinx_Devices +#product.Source_control_integration_with_Microsoft(R)_Source-Code_Control_Interface_(MSSCCI)_for_MATLAB_and_Simulink +#product.Streaming_Data_Framework_for_MATLAB_Production_Server +#product.Text_Analytics_Toolbox_Model_for_BERT-Base_Multilingual_Cased_Network +#product.Text_Analytics_Toolbox_Model_for_BERT-Base_Network +#product.Text_Analytics_Toolbox_Model_for_BERT-Large_Network +#product.Text_Analytics_Toolbox_Model_for_BERT-Mini_Network +#product.Text_Analytics_Toolbox_Model_for_BERT-Small_Network +#product.Text_Analytics_Toolbox_Model_for_BERT-Tiny_Network +#product.Text_Analytics_Toolbox_Model_for_fastText_English_16_Billion_Token_Word_Embedding +#product.Text_Analytics_Toolbox_Model_from_UDify_Data +#product.UAV_Toolbox_Interface_for_Unreal_Engine_Projects +#product.UAV_Toolbox_Support_Package_for_PX4_Autopilots +#product.Variant_Manager_for_Simulink +#product.Vehicle_Dynamics_Blockset_Interface_for_Unreal_Engine_4_Projects +#product.Vehicle_Dynamics_Blockset_Maneuver_Data +#product.Vision_HDL_Toolbox_Support_Package_for_Xilinx_Zynq-Based_Hardware +#product.WINNER_II_Channel_Model_for_Communications_Toolbox +#product.Wireless_Testbench_Support_Package_for_NI_USRP_Radios + + +######################################################################## +## CHECKSUM +######################################################################## +## +## NOTE: DO NOT edit this field. MathWorks uses this field to +## check the integrity of the input file. Changing the value +## of the checksum field invalidates this input file. + +?checksum=UjIwMjNi