Problem istalling ML 2025 on Tower Computer but not Laptop, why?

3 views (last 30 days)
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

Answers (3)

Star Strider
Star Strider on 15 Jun 2025
From the documentation --
Can I use MATLAB Home on 2 computers simultaneously?
  • The MATLAB Home License can only be used on a single computer at a time.
That may be the problem.
I suggest that you Contact Support if this is not the problem you are experiencing.
.
  2 Comments
ODE
ODE on 15 Jun 2025
Actually you can license the home version on two computers, but no more.
Walter Roberson
Walter Roberson on 16 Jun 2025
@ODE that is not in accorandance with the license agreement.
dbtype(fullfile(matlabroot,'license_agreement.txt'), '686:689')
686 (ii) A Named User may install the Programs on up to four (4) different 687 Computers but may not use a Program on more than two (2) Computers 688 simultaneously, except that Student and Home Licenses are limited to a 689 single Computer.

Sign in to comment.


Walter Roberson
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

ODE
ODE on 15 Jun 2025
SOLUTION:
After copying 2025a to my Tower from my Laptop, it executed correctly and "figure" worked without a problem. Then I realized I had not set up my "setup.m" in the local toolbox. After I did the problem re-appered. So the problem was in my start up file. The beginning is shown below. Turned out the "figure" command caused the problem in 2025a, but not 2024b. This was a legacy command from long ago for a signal processing toolbox I created for myself. No longer needed and it was commented out. Now 2025a works for the figure command.
%STARTUPSAV Startup file
% Change the name of this file to STARTUP.M. The file
% is executed when MATLAB starts up, if it exists
% anywhere on the path. In this example, the
% MAT-file generated during quitting using FINISHSAV
% is loaded into MATLAB during startup.
% Copyright 1984-2000 The MathWorks, Inc.
%load matlab.mat
figure
prjdisk = 'D:';
%eval(['cd ',prjdisk,'\new']);
pthdisk = 'E:';
mypath = [pthdisk,'\griz\mfiles\'];
eval(['addpath ',mypath,'misc'])

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products


Release

R2025a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!