- The MATLAB Home License can only be used on a single computer at a time.
Problem istalling ML 2025 on Tower Computer but not Laptop, why?
3 views (last 30 days)
Show older comments
Problem on DeskTop
Home License -- for personal use only. Not for government,
academic, research, commercial, or other organizational use.
>> figure (This is the Problem)
Warning: Invalid default value for property 'TimeOutDuration' in class
'matlab.ui.internal.controller.platformhost.FigureReadyForLaunchToken':
Too many input arguments.
>> v
v =
'25.1.0.2943329 (R2025a)'
Istalled once, with this problem. Uninstalled this and previous 2024 versions. Re-istalled. Same problem. Unistalled. Tried to install version 2024b from internet. Download problem. Copied 2024b from Laptop over partially istalled version on Tower. Works fine, as below.
TOWER: Device name Griz
Processor Intel(R) Core(TM) i7-9700 CPU @ 3.00GHz 3.00 GHz
Installed RAM 32,0 GB (31,8 GB usable)
Device ID A816BB53-E788-41B8-A31E-19397640B6EC
Product ID 00330-52574-79054-AAOEM
System type 64-bit operating system, x64-based processor
Pen and touch No pen or touch input is available for this display
Edition Windows 10 Pro
Version 22H2
Installed on 09/07/2022
OS build 19045.4412
Experience Windows Feature Experience Pack 1000.19056.1000.0
Display Adaptors
Intel UHD Graphics 630
Nvidia Quadro P620
Has 42 TB of disk. System on 2 TB SSD.
NO Problem on LapTop:
Device Name Obiwan
Processor Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz 2.59 GHz
Installed RAM 32.0 GB (31.8 GB usable)
Storage 1.82 TB HDD ST2000LX001-1RG174, 1.82 TB SSD MKNSSDPE2TB-D8
Graphics Card NVIDIA GeForce GTX 1650 (4 GB), Intel(R) UHD Graphics 630 (128 MB)
Device ID 3B58130C-AA6B-4D1F-89F1-5A4A5F6B7105
Product ID 00330-81469-93660-AA538
System Type 64-bit operating system, x64-based processor
Pen and touch No pen or touch input is available for this display
Edition Windows 10 Pro
Version 2009
Installed on 1/15/2023
OS Build 19045.5965
>> ver
---------------------------------------------------------------------
MATLAB Version: 25.1.0.2943329 (R2025a)
MATLAB License Number: 4085xxxx
Operating System: Microsoft Windows 10 Pro Version 10.0 (Build 19045)
Java Version: Java is not enabled
---------------------------------------------------------------------
MATLAB Version 25.1 (R2025a)
System on: SABRENT 2TB Rocket 4 Plus NVMe 4.0 Gen4 PCIe M.2 Internal SSD Extreme Performance Solid State Drive R/W 7100/6600MB/s (SB-RKT4P-2TB)
Also 2 TB SATA Seagate drive
0 Comments
Answers (3)
Star Strider
on 15 Jun 2025
Can I use MATLAB Home on 2 computers simultaneously?
That may be the problem.
.
2 Comments
Walter Roberson
on 16 Jun 2025
@ODE that is not in accorandance with the license agreement.
dbtype(fullfile(matlabroot,'license_agreement.txt'), '686:689')
Walter Roberson
on 15 Jun 2025
The most common cause of problems such as these, is if the system with the problem has installed a third-party .m file with the same name as one used by MATLAB, so the third-party file is being called instead of the normal .m file.
It looks to me as if most likely the problem would have to do with a file named "seconds.m" . Try
which -all seconds
The typical output would look similar to
/Applications/MATLAB_R2025a.app/toolbox/matlab/datatypes/duration/seconds.m
seconds is a built-in method % gpuArray method
/Applications/MATLAB_R2025a.app/toolbox/parallel/array/distributed/@distributed/distributed.m % distributed method
/Applications/MATLAB_R2025a.app/toolbox/matlab/bigdata/@tall/seconds.m % tall method
/Applications/MATLAB_R2025a.app/toolbox/parallel/array/distributed/@codistributed/seconds.m % codistributed method
0 Comments
See Also
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!