Month: December 2025
Can I purchase additional packages/toolboxes after purchasing the student version of MATLAB?
In addition to the main Matlab software with the core package, there are numerous additional tools available. Can I purchase additional tools after buying Matlab, or is it not possible to expand the software after purchase?In addition to the main Matlab software with the core package, there are numerous additional tools available. Can I purchase additional tools after buying Matlab, or is it not possible to expand the software after purchase? In addition to the main Matlab software with the core package, there are numerous additional tools available. Can I purchase additional tools after buying Matlab, or is it not possible to expand the software after purchase? matlab, toolbox, students home MATLAB Answers — New Questions
Matlab function ‘movmean’ doesn’t work on simulink
I’m designing movmean function on simulink using Matlab function block
And when i try to test the block by inputing timeseries data, the input and output of ‘movmean’ function is same.
I attach pics below
1) Moving Average function block
2) code of Moving Average block
3) input and output of Moving Average block (output is not computed well)I’m designing movmean function on simulink using Matlab function block
And when i try to test the block by inputing timeseries data, the input and output of ‘movmean’ function is same.
I attach pics below
1) Moving Average function block
2) code of Moving Average block
3) input and output of Moving Average block (output is not computed well) I’m designing movmean function on simulink using Matlab function block
And when i try to test the block by inputing timeseries data, the input and output of ‘movmean’ function is same.
I attach pics below
1) Moving Average function block
2) code of Moving Average block
3) input and output of Moving Average block (output is not computed well) matlab, simulink, movmean MATLAB Answers — New Questions
Why am i getting error “you don’t have permissions to folder /usr/MATLAB/R2024b” while installing R2025a?
Yes i know the question has been ask before, but since i’m not allowed to comment, im asking it again.
Yes i am Admin/root
and Yes permissions are 777 for /usr/MATLAB
No the link did not provide an Answer
Thanks for the helpYes i know the question has been ask before, but since i’m not allowed to comment, im asking it again.
Yes i am Admin/root
and Yes permissions are 777 for /usr/MATLAB
No the link did not provide an Answer
Thanks for the help Yes i know the question has been ask before, but since i’m not allowed to comment, im asking it again.
Yes i am Admin/root
and Yes permissions are 777 for /usr/MATLAB
No the link did not provide an Answer
Thanks for the help r2025a, updating MATLAB Answers — New Questions
How do I Create an array of plots. The results disapear into “handle to deleted PolarCompassPlot” See code
clearvars -except Radius_list Six_plots
Circle_num = 4
nlist = 1;
%Six_plots = F_six_plots(Circle_num, Radius_list);
Six_plots;
sz = size(Six_plots,2);
Plot_num(1:sz) = compassplot(ones)
jplot = 1;
while jplot < sz
Plot_num(nlist) = compassplot(Six_plots(1:nlist));
nlist = nlist+1;
jplot = jplot+1
end
X = Plot_num
Stepping thru the while works. Plot_num(nlist) is fine
X is all "handle to deleted PolarCompassPlot"clearvars -except Radius_list Six_plots
Circle_num = 4
nlist = 1;
%Six_plots = F_six_plots(Circle_num, Radius_list);
Six_plots;
sz = size(Six_plots,2);
Plot_num(1:sz) = compassplot(ones)
jplot = 1;
while jplot < sz
Plot_num(nlist) = compassplot(Six_plots(1:nlist));
nlist = nlist+1;
jplot = jplot+1
end
X = Plot_num
Stepping thru the while works. Plot_num(nlist) is fine
X is all "handle to deleted PolarCompassPlot" clearvars -except Radius_list Six_plots
Circle_num = 4
nlist = 1;
%Six_plots = F_six_plots(Circle_num, Radius_list);
Six_plots;
sz = size(Six_plots,2);
Plot_num(1:sz) = compassplot(ones)
jplot = 1;
while jplot < sz
Plot_num(nlist) = compassplot(Six_plots(1:nlist));
nlist = nlist+1;
jplot = jplot+1
end
X = Plot_num
Stepping thru the while works. Plot_num(nlist) is fine
X is all "handle to deleted PolarCompassPlot" plot_num MATLAB Answers — New Questions
Automating Microsoft 365 with PowerShell Update 19
Update Part of Office 365 for IT Pros January 2026 Release
The Office 365 for IT Pros team is delighted to announce that update #19 for the Automating Microsoft 365 with PowerShell eBook is available for subscribers to download. Please use the link in the receipt emailed after purchase or your Gumroad.com account to fetch the updated PDF and EPUB files. We have also updated the Kindle and Paperback editions available from Amazon.com. Subscribers who purchase through Gumroad can transfer the EPUB version to Kindle.
Updates and Revisions
Like all our monthly updates, update #19 contains a mixture of new material, updates, and revisions. The pace of change in the Microsoft world eases at this time of year as Microsoft engineers take time out for the holidays, so there’s nothing dramatic to report in terms of new content.
Largely because not much has happened with the SharePoint Online management module, it was nice to see Microsoft deliver support for app-only authentication based on X.509 certificates. This is still a Windows PowerShell module. Even if it’s possible to use the module with PowerShell Core, it would be nice if Microsoft did the necessary work to upgrade the module fully.
The New Create Site Graph API
Also in the SharePoint space, I think it’s fair to say that Graph API coverage for SharePoint Online is spotty in places. For instance, while a Graph API exists to create a SharePoint list, you can’t create a SharePoint site unless you’re creating a Microsoft 365 group or team, in which case background provisioning takes care of creating the associated site. On November 24, 2025, Microsoft announced the beta of a Graph API to create sites (Figure 1) together with a new Site.Create.All Graph permission to reduce the level of permission needed for an app or person to create sites.

Documentation for the create Site API is available online. Initially, I couldn’t get the API to work at all and reported the fact to Microsoft. Some tweaking clearly took place and now this code works to create a communications site.
$Uri = "https://graph.microsoft.com/beta/sites/"
$Params = @{
name = "Communication Site Test"
webUrl = "https://office365itpros.sharepoint.com/sites/commsite1"
locale = "en-US"
shareByEmailEnabled = $false
description = "A test communication site"
template = "sitepagepublishing"
ownerIdentityToResolve = @{
email = "Marty.King@Office365itpros.com"
}
}
Invoke-MgGraphRequest -Uri $Uri -Method POST -Body $Params
Changing the template type to sts (team site without a Microsoft 365 group) also works. However, any attempt to create a site using the group template fails with a 500 internal server error. It’s unsurprising that the creation of the most complex site type would run into some problems. In any case, the Microsoft Graph PowerShell SDK doesn’t include a cmdlet for the create Site API, so we don’t currently cover the API in Automating Microsoft 365 with PowerShell. Hopefully, the issue with the (beta) API will be resolved soon and we’ll include coverage in the next eBook update.
New Version of the Microsoft Graph PowerShell SDK
Microsoft released V2.33 of the Microsoft Graph PowerShell SDK on 9 December 2025. So far, everything appears stable. However, the first report of a V2.33 problem popped up in GitHub with an error in the New-MgTeamChannelMember cmdlet. As it turns out, it seems like a) the issue has been around going back to at least V2.28, and b) the usual workaround of using the Graph API works. For example:
$User = Get-MgUser -UserId Alain.Charnier@Office365itpros.com
$Team = Get-MgTeam -Filter "DisplayName eq 'Microsoft 365 Adoption'"
$Channel = Get-MgTeamChannel -TeamId $Team.Id -Filter "DisplayName eq 'Project Infinity'"
$Uri = ("https://graph.microsoft.com/v1.0/teams/{0}/channels/{1}/members" -f $Team.id, $Channel.id)
$Roles = @("member")
$UserId = $User.Id
$Body = @{}
$Body.Add("@odata.type", "#microsoft.graph.aadUserConversationMember")
$Body.Add("roles", $Roles)
$Body.Add("user@odata.bind", "https://graph.microsoft.com/v1.0/users('$UserId')")
Invoke-MgGraphRequest -Uri $uri -Method POST -Body $Body
Microsoft subsequently released V2.34 on 20 December 2025. Pushing out a new release so soon after V2.33 is odd, especially just before a major holiday period. I can’t find any information (the engineers are all on holiday) about why they pushed a new version so quickly, so test V2.33 or V2.34 very carefully before putting either version into production.
Speaking of which, if you’re looking for code to test with, why not visit the Office 365 for IT Pros GitHub repository. I’m sure that you’ll find something there to test common Microsoft Graph PowerShell SDK cmdlets.
DG Optimization through IEEE 14 bus bar system
Hello,
I need a code for optimal location and sizing of DG in IEEE 14 bus bar system using fuzzy logic algorithm Or ANFIS technique. My objective function is power loss reduction and voltage profile improvement with and without DG. If this code is available in MATLAB with anyone. Please share it with me on my email: naveedkhanuet@gmail.com
Thank you.Hello,
I need a code for optimal location and sizing of DG in IEEE 14 bus bar system using fuzzy logic algorithm Or ANFIS technique. My objective function is power loss reduction and voltage profile improvement with and without DG. If this code is available in MATLAB with anyone. Please share it with me on my email: naveedkhanuet@gmail.com
Thank you. Hello,
I need a code for optimal location and sizing of DG in IEEE 14 bus bar system using fuzzy logic algorithm Or ANFIS technique. My objective function is power loss reduction and voltage profile improvement with and without DG. If this code is available in MATLAB with anyone. Please share it with me on my email: naveedkhanuet@gmail.com
Thank you. dg, optimization MATLAB Answers — New Questions
How can I make use of the full window size when zooming into very tall images?
When zooming into an image with a hight aspect ratio (heigth much larger than its width), the displayed image is constrained to the area that was used with the original imshow command and the rest of the window remains unused. How can I make use of the full window size?
Example (normally imtall would be a linescan camera image of size 10000 by 512 pixels but this demonstrates my problem pretty well):
im=imread(‘cameraman.tif’);
imtall=repmat(im,11,1); % size 2816 by 256
imshow(imtall)
zoom(10)
There would be enough space to the left and right side in the window to display the full cameraman:When zooming into an image with a hight aspect ratio (heigth much larger than its width), the displayed image is constrained to the area that was used with the original imshow command and the rest of the window remains unused. How can I make use of the full window size?
Example (normally imtall would be a linescan camera image of size 10000 by 512 pixels but this demonstrates my problem pretty well):
im=imread(‘cameraman.tif’);
imtall=repmat(im,11,1); % size 2816 by 256
imshow(imtall)
zoom(10)
There would be enough space to the left and right side in the window to display the full cameraman: When zooming into an image with a hight aspect ratio (heigth much larger than its width), the displayed image is constrained to the area that was used with the original imshow command and the rest of the window remains unused. How can I make use of the full window size?
Example (normally imtall would be a linescan camera image of size 10000 by 512 pixels but this demonstrates my problem pretty well):
im=imread(‘cameraman.tif’);
imtall=repmat(im,11,1); % size 2816 by 256
imshow(imtall)
zoom(10)
There would be enough space to the left and right side in the window to display the full cameraman: imshow, zoom, aspect ratio MATLAB Answers — New Questions
How to incorporate camera calibration in PIVlab
When using PIVlab it seems that the calibration options are rather limited, e.g. as far as I can see one cannot use camera extrinsics to compensate for camera orientation (one can only link pixel size to real world distance). Or should that somehow be taken into account when preprocessing the inout images ? The compensation for camera distortion (intrinsic) has to be done prior to importing the images into PIVlab, it would be great if an integration with the camera calibration app would be added to PIVlab, I’m sure this will save peoples time while a lot of mistakes can be avoided.When using PIVlab it seems that the calibration options are rather limited, e.g. as far as I can see one cannot use camera extrinsics to compensate for camera orientation (one can only link pixel size to real world distance). Or should that somehow be taken into account when preprocessing the inout images ? The compensation for camera distortion (intrinsic) has to be done prior to importing the images into PIVlab, it would be great if an integration with the camera calibration app would be added to PIVlab, I’m sure this will save peoples time while a lot of mistakes can be avoided. When using PIVlab it seems that the calibration options are rather limited, e.g. as far as I can see one cannot use camera extrinsics to compensate for camera orientation (one can only link pixel size to real world distance). Or should that somehow be taken into account when preprocessing the inout images ? The compensation for camera distortion (intrinsic) has to be done prior to importing the images into PIVlab, it would be great if an integration with the camera calibration app would be added to PIVlab, I’m sure this will save peoples time while a lot of mistakes can be avoided. pivlab, calibration camera extrinsics MATLAB Answers — New Questions
Use variable values froma code block directly in a Live Script text cell (inline evaluation)
MATLAB help states that using backticks around a variable name will have it replaced with its value when its inline in a text block.I am using the Live Editor and saving as an mlx file. Below is an image of a section of code and I want to state the altitude in a text block. An extensive search of the internet provided these methods but none of them work. The variable name is not replaced by the value. Has anyone else tried this and had it work successfully? I prefer this to a statement in the code to write a sentence, its just cleaner overall. Any suggestions. tips or known examples that work? Trying out 2025b, does not work on 2023b either. Any help greatly appreciated!
Code image:MATLAB help states that using backticks around a variable name will have it replaced with its value when its inline in a text block.I am using the Live Editor and saving as an mlx file. Below is an image of a section of code and I want to state the altitude in a text block. An extensive search of the internet provided these methods but none of them work. The variable name is not replaced by the value. Has anyone else tried this and had it work successfully? I prefer this to a statement in the code to write a sentence, its just cleaner overall. Any suggestions. tips or known examples that work? Trying out 2025b, does not work on 2023b either. Any help greatly appreciated!
Code image: MATLAB help states that using backticks around a variable name will have it replaced with its value when its inline in a text block.I am using the Live Editor and saving as an mlx file. Below is an image of a section of code and I want to state the altitude in a text block. An extensive search of the internet provided these methods but none of them work. The variable name is not replaced by the value. Has anyone else tried this and had it work successfully? I prefer this to a statement in the code to write a sentence, its just cleaner overall. Any suggestions. tips or known examples that work? Trying out 2025b, does not work on 2023b either. Any help greatly appreciated!
Code image: live editor, inline text, matlab editor, matlab MATLAB Answers — New Questions
How to draw line in viewer3d ?
Hello,
I m trying to use viewer3d as a openGL viewer and it works well for 3D surface and 3D points using images.ui.graphics.Surface and images.ui.graphics.Points but i wonder if it is possible to draw line or connected line inside the viewer ? I dont mean how to show wireframe when using a surface or annotation line.
I just try for exemple to attached 3 vectors in X,Y and Z direction to each 3D object.
I saw 2 functions WideLine and Thinline but i did not find any documentation about them.
Thanks for your helpHello,
I m trying to use viewer3d as a openGL viewer and it works well for 3D surface and 3D points using images.ui.graphics.Surface and images.ui.graphics.Points but i wonder if it is possible to draw line or connected line inside the viewer ? I dont mean how to show wireframe when using a surface or annotation line.
I just try for exemple to attached 3 vectors in X,Y and Z direction to each 3D object.
I saw 2 functions WideLine and Thinline but i did not find any documentation about them.
Thanks for your help Hello,
I m trying to use viewer3d as a openGL viewer and it works well for 3D surface and 3D points using images.ui.graphics.Surface and images.ui.graphics.Points but i wonder if it is possible to draw line or connected line inside the viewer ? I dont mean how to show wireframe when using a surface or annotation line.
I just try for exemple to attached 3 vectors in X,Y and Z direction to each 3D object.
I saw 2 functions WideLine and Thinline but i did not find any documentation about them.
Thanks for your help viewer3d, thinline, wideline, images.ui.graphics.viewer MATLAB Answers — New Questions
.mldatx file lost all data in the “Archive” section after saving failed due to insufficient disk space, while file size remains unchanged
I am experiencing an issue with a MATLAB .mldatx file and the Data Inspector.
Initially, I saved the .mldatx file for the first time before plotting any data in the Data Inspector.
After that, I plotted the data and attempted to save the file a second time.
During this second save process, the save operation did not complete successfully because the disk was full, which caused MATLAB to throw an error. After freeing up disk space, I reopened the same .mldatx file.
However, when opening the file again, all run data under the “Archive” section is missing, including all plotted graphs. At the same time, the file size shown in the file system is unchanged from before the issue occurred.
I would like to understand:
Why the Archive data and plots disappeared even though the file size is still the same
Whether the data is corrupted or still recoverable
If there is any way to restore the lost Archive data or prevent this issue in the futureI am experiencing an issue with a MATLAB .mldatx file and the Data Inspector.
Initially, I saved the .mldatx file for the first time before plotting any data in the Data Inspector.
After that, I plotted the data and attempted to save the file a second time.
During this second save process, the save operation did not complete successfully because the disk was full, which caused MATLAB to throw an error. After freeing up disk space, I reopened the same .mldatx file.
However, when opening the file again, all run data under the “Archive” section is missing, including all plotted graphs. At the same time, the file size shown in the file system is unchanged from before the issue occurred.
I would like to understand:
Why the Archive data and plots disappeared even though the file size is still the same
Whether the data is corrupted or still recoverable
If there is any way to restore the lost Archive data or prevent this issue in the future I am experiencing an issue with a MATLAB .mldatx file and the Data Inspector.
Initially, I saved the .mldatx file for the first time before plotting any data in the Data Inspector.
After that, I plotted the data and attempted to save the file a second time.
During this second save process, the save operation did not complete successfully because the disk was full, which caused MATLAB to throw an error. After freeing up disk space, I reopened the same .mldatx file.
However, when opening the file again, all run data under the “Archive” section is missing, including all plotted graphs. At the same time, the file size shown in the file system is unchanged from before the issue occurred.
I would like to understand:
Why the Archive data and plots disappeared even though the file size is still the same
Whether the data is corrupted or still recoverable
If there is any way to restore the lost Archive data or prevent this issue in the future matlab, data inspector, .mldatx, mldatx, file corruption MATLAB Answers — New Questions
Add a datestr to duration data to get in datestr format
Hi, I have a graph where Im plotting on the x-axis time by using tic then in a loop making measurements ‘Y’ and performing tend=toc
I dor ecord the actual date / time at the start too.
dt = datestr(now,’dd-mmm-yyyy HH-MM-SS’); %get current dateTime
Once my loop has finished an I have a plot of all the Y’s against their time of measurements (starting at 0), how can I add the "duration" onto the actual datestr, so I can have on the x-axis the actual date time.
thanks
JasonHi, I have a graph where Im plotting on the x-axis time by using tic then in a loop making measurements ‘Y’ and performing tend=toc
I dor ecord the actual date / time at the start too.
dt = datestr(now,’dd-mmm-yyyy HH-MM-SS’); %get current dateTime
Once my loop has finished an I have a plot of all the Y’s against their time of measurements (starting at 0), how can I add the "duration" onto the actual datestr, so I can have on the x-axis the actual date time.
thanks
Jason Hi, I have a graph where Im plotting on the x-axis time by using tic then in a loop making measurements ‘Y’ and performing tend=toc
I dor ecord the actual date / time at the start too.
dt = datestr(now,’dd-mmm-yyyy HH-MM-SS’); %get current dateTime
Once my loop has finished an I have a plot of all the Y’s against their time of measurements (starting at 0), how can I add the "duration" onto the actual datestr, so I can have on the x-axis the actual date time.
thanks
Jason datestr, tic, toc MATLAB Answers — New Questions
enforce smooth parameter variation in model fit across space
Genetic algorithm ga() was used to fit a model to data taken across 3D space.
In this problem, 6 parameters are fit for each spatial point, which takes up to 2 minutes on a laptop; there are 2000 points. Fitting the model to each and every point sequentially takes 1-2 days.
As a first-pass, each point was considered independently, even though the physics-based model parameters must vary smoothly over space. What is a computationally-efficient way to force this smooth spatial variation on all 6 parameters (ideally without requiring a supercomputer or several days of processing)?Genetic algorithm ga() was used to fit a model to data taken across 3D space.
In this problem, 6 parameters are fit for each spatial point, which takes up to 2 minutes on a laptop; there are 2000 points. Fitting the model to each and every point sequentially takes 1-2 days.
As a first-pass, each point was considered independently, even though the physics-based model parameters must vary smoothly over space. What is a computationally-efficient way to force this smooth spatial variation on all 6 parameters (ideally without requiring a supercomputer or several days of processing)? Genetic algorithm ga() was used to fit a model to data taken across 3D space.
In this problem, 6 parameters are fit for each spatial point, which takes up to 2 minutes on a laptop; there are 2000 points. Fitting the model to each and every point sequentially takes 1-2 days.
As a first-pass, each point was considered independently, even though the physics-based model parameters must vary smoothly over space. What is a computationally-efficient way to force this smooth spatial variation on all 6 parameters (ideally without requiring a supercomputer or several days of processing)? genetic algorithm, spatially varying coefficients, parameter estimation MATLAB Answers — New Questions
Error in importing YOLO ONNX model in MATLAB
I tried to import an YOLO ONNX model to MATLAB (I have the DeepLearning Toolbox installed), but got an error.
I created my ONNX model using the following python code:
from ultralytics import YOLO
YOLO("yolo_model.pt").export(
format="onnx", opset=12, simplify=True, dynamic=False, nms=False)
(I tried also with dynamic=True and without specifying opset arg but got same results)
On MATLAB I used this code to import the model:
modelPath = ‘yolo_model.onnx’;
net = importNetworkFromONNX(modelPath);
dummyInput = dlarray(rand(1, 3, 256, 256), ‘BCSS’);
net = initialize(net, dummyInput);
out = predict(net, dummyInput);
and got the following:
Warning:
Unable to import some ONNX operators, because they are not supported.
They have been replaced by placholder layers or by placeholder functions inside generated custom layers. To find the
placeholder layers, call the function findPlaceholderLayers on the returned object.
2 operator(s) : Attribute ‘atialias’ is not supported.
To import the ONNX network as a function, use importONNXFunction.
> In nnet.internal.cnn.onnx.importONNXNetwork>iWarnIfContainsPlaceholders (line 163)
In nnet.internal.cnn.onnx.importONNXNetwork>iHandleTranslationIssues (line 104)
In nnet.internal.cnn.onnx.importONNXNetwork (line 57)
In importNetworkFromONNX (line 77)
In LoadONNX (line 6)
Warning: Returning an uninitialized dlnetwork. Initialize the network by passing example input data to the initialized object function.
> In nnet.internal.cnn.onnx.importONNXNetwork>constructDlnetwork (line 93)
In nnet.internal.cnn.onnx.importONNXNetwork (line 62)
In nnet.internal.cnn.onnx.importNetworkFromONNX (line 13)
In importNetworkFromONNX (line 77)
In LoadONNX (line 6)
Error using dlnetwork/initialize (line 600)
Invalid network.
Error in LoadONNX (line 10)
net = initialize(net, dummyInput);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Caused by:
Layer ‘Reshape_To_ReshapeLayer1072’: Error using the predict function in layer yolo_model.Reshape_To_ReshapeLayer1072. The function threw an error and could not be executed.
Error using reshape
Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate size for that dimension.
Error in dlarray/reshape (line 40)
objdata = reshape(objdata, varargin{:});
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in yolo_model.Reshape_To_ReshapeLayer1072>Reshape_To_ReshapeGraph1066 (line 204)
Vars.x_model_10_m_m_0__9 = reshape(Vars.x_model_10_m_m_0__19, shape{:});
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in yolo_model.Reshape_To_ReshapeLayer1072>Reshape_To_ReshapeFcn (line 190)
[x_model_10_m_m_0__11, x_model_10_m_m_0__12, x_model_10_m_m_0__8, x_model_10_m_m_0__13, x_model_10_m_m_0__11NumDims, x_model_10_m_m_0__12NumDims, x_model_10_m_m_0__8NumDims,
x_model_10_m_m_0__13NumDims, state] = Reshape_To_ReshapeGraph1066(x_model_10_m_m_0__18, NumDims.x_model_10_m_m_0__18, Vars, NumDims, Training, params.State);
Error in yolo_model.Reshape_To_ReshapeLayer1072/predict (line 34)
[x_model_10_m_m_0__11, x_model_10_m_m_0__12, x_model_10_m_m_0__8, x_model_10_m_m_0__13, x_model_10_m_m_0__11NumDims, x_model_10_m_m_0__12NumDims,
x_model_10_m_m_0__8NumDims, x_model_10_m_m_0__13NumDims] = Reshape_To_ReshapeFcn(x_model_10_m_m_0__18, x_model_10_m_m_0__18NumDims, onnxParams, ‘Training’, false, …
Please helpI tried to import an YOLO ONNX model to MATLAB (I have the DeepLearning Toolbox installed), but got an error.
I created my ONNX model using the following python code:
from ultralytics import YOLO
YOLO("yolo_model.pt").export(
format="onnx", opset=12, simplify=True, dynamic=False, nms=False)
(I tried also with dynamic=True and without specifying opset arg but got same results)
On MATLAB I used this code to import the model:
modelPath = ‘yolo_model.onnx’;
net = importNetworkFromONNX(modelPath);
dummyInput = dlarray(rand(1, 3, 256, 256), ‘BCSS’);
net = initialize(net, dummyInput);
out = predict(net, dummyInput);
and got the following:
Warning:
Unable to import some ONNX operators, because they are not supported.
They have been replaced by placholder layers or by placeholder functions inside generated custom layers. To find the
placeholder layers, call the function findPlaceholderLayers on the returned object.
2 operator(s) : Attribute ‘atialias’ is not supported.
To import the ONNX network as a function, use importONNXFunction.
> In nnet.internal.cnn.onnx.importONNXNetwork>iWarnIfContainsPlaceholders (line 163)
In nnet.internal.cnn.onnx.importONNXNetwork>iHandleTranslationIssues (line 104)
In nnet.internal.cnn.onnx.importONNXNetwork (line 57)
In importNetworkFromONNX (line 77)
In LoadONNX (line 6)
Warning: Returning an uninitialized dlnetwork. Initialize the network by passing example input data to the initialized object function.
> In nnet.internal.cnn.onnx.importONNXNetwork>constructDlnetwork (line 93)
In nnet.internal.cnn.onnx.importONNXNetwork (line 62)
In nnet.internal.cnn.onnx.importNetworkFromONNX (line 13)
In importNetworkFromONNX (line 77)
In LoadONNX (line 6)
Error using dlnetwork/initialize (line 600)
Invalid network.
Error in LoadONNX (line 10)
net = initialize(net, dummyInput);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Caused by:
Layer ‘Reshape_To_ReshapeLayer1072’: Error using the predict function in layer yolo_model.Reshape_To_ReshapeLayer1072. The function threw an error and could not be executed.
Error using reshape
Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate size for that dimension.
Error in dlarray/reshape (line 40)
objdata = reshape(objdata, varargin{:});
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in yolo_model.Reshape_To_ReshapeLayer1072>Reshape_To_ReshapeGraph1066 (line 204)
Vars.x_model_10_m_m_0__9 = reshape(Vars.x_model_10_m_m_0__19, shape{:});
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in yolo_model.Reshape_To_ReshapeLayer1072>Reshape_To_ReshapeFcn (line 190)
[x_model_10_m_m_0__11, x_model_10_m_m_0__12, x_model_10_m_m_0__8, x_model_10_m_m_0__13, x_model_10_m_m_0__11NumDims, x_model_10_m_m_0__12NumDims, x_model_10_m_m_0__8NumDims,
x_model_10_m_m_0__13NumDims, state] = Reshape_To_ReshapeGraph1066(x_model_10_m_m_0__18, NumDims.x_model_10_m_m_0__18, Vars, NumDims, Training, params.State);
Error in yolo_model.Reshape_To_ReshapeLayer1072/predict (line 34)
[x_model_10_m_m_0__11, x_model_10_m_m_0__12, x_model_10_m_m_0__8, x_model_10_m_m_0__13, x_model_10_m_m_0__11NumDims, x_model_10_m_m_0__12NumDims,
x_model_10_m_m_0__8NumDims, x_model_10_m_m_0__13NumDims] = Reshape_To_ReshapeFcn(x_model_10_m_m_0__18, x_model_10_m_m_0__18NumDims, onnxParams, ‘Training’, false, …
Please help I tried to import an YOLO ONNX model to MATLAB (I have the DeepLearning Toolbox installed), but got an error.
I created my ONNX model using the following python code:
from ultralytics import YOLO
YOLO("yolo_model.pt").export(
format="onnx", opset=12, simplify=True, dynamic=False, nms=False)
(I tried also with dynamic=True and without specifying opset arg but got same results)
On MATLAB I used this code to import the model:
modelPath = ‘yolo_model.onnx’;
net = importNetworkFromONNX(modelPath);
dummyInput = dlarray(rand(1, 3, 256, 256), ‘BCSS’);
net = initialize(net, dummyInput);
out = predict(net, dummyInput);
and got the following:
Warning:
Unable to import some ONNX operators, because they are not supported.
They have been replaced by placholder layers or by placeholder functions inside generated custom layers. To find the
placeholder layers, call the function findPlaceholderLayers on the returned object.
2 operator(s) : Attribute ‘atialias’ is not supported.
To import the ONNX network as a function, use importONNXFunction.
> In nnet.internal.cnn.onnx.importONNXNetwork>iWarnIfContainsPlaceholders (line 163)
In nnet.internal.cnn.onnx.importONNXNetwork>iHandleTranslationIssues (line 104)
In nnet.internal.cnn.onnx.importONNXNetwork (line 57)
In importNetworkFromONNX (line 77)
In LoadONNX (line 6)
Warning: Returning an uninitialized dlnetwork. Initialize the network by passing example input data to the initialized object function.
> In nnet.internal.cnn.onnx.importONNXNetwork>constructDlnetwork (line 93)
In nnet.internal.cnn.onnx.importONNXNetwork (line 62)
In nnet.internal.cnn.onnx.importNetworkFromONNX (line 13)
In importNetworkFromONNX (line 77)
In LoadONNX (line 6)
Error using dlnetwork/initialize (line 600)
Invalid network.
Error in LoadONNX (line 10)
net = initialize(net, dummyInput);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Caused by:
Layer ‘Reshape_To_ReshapeLayer1072’: Error using the predict function in layer yolo_model.Reshape_To_ReshapeLayer1072. The function threw an error and could not be executed.
Error using reshape
Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate size for that dimension.
Error in dlarray/reshape (line 40)
objdata = reshape(objdata, varargin{:});
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in yolo_model.Reshape_To_ReshapeLayer1072>Reshape_To_ReshapeGraph1066 (line 204)
Vars.x_model_10_m_m_0__9 = reshape(Vars.x_model_10_m_m_0__19, shape{:});
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Error in yolo_model.Reshape_To_ReshapeLayer1072>Reshape_To_ReshapeFcn (line 190)
[x_model_10_m_m_0__11, x_model_10_m_m_0__12, x_model_10_m_m_0__8, x_model_10_m_m_0__13, x_model_10_m_m_0__11NumDims, x_model_10_m_m_0__12NumDims, x_model_10_m_m_0__8NumDims,
x_model_10_m_m_0__13NumDims, state] = Reshape_To_ReshapeGraph1066(x_model_10_m_m_0__18, NumDims.x_model_10_m_m_0__18, Vars, NumDims, Training, params.State);
Error in yolo_model.Reshape_To_ReshapeLayer1072/predict (line 34)
[x_model_10_m_m_0__11, x_model_10_m_m_0__12, x_model_10_m_m_0__8, x_model_10_m_m_0__13, x_model_10_m_m_0__11NumDims, x_model_10_m_m_0__12NumDims,
x_model_10_m_m_0__8NumDims, x_model_10_m_m_0__13NumDims] = Reshape_To_ReshapeFcn(x_model_10_m_m_0__18, x_model_10_m_m_0__18NumDims, onnxParams, ‘Training’, false, …
Please help onnx, yolo MATLAB Answers — New Questions
Sending data using I2C on Simulink
I’m using Nucleo-G474RE to send a bit stream over Simulink, instead of receiving 24 bits on the oscilloscope i can read only 8 bits, which are supposed to be the 8 bits in the middle that have the address of the peripheral and the status of the I2C block gives me 516 which is not on the documentation from matlab.I’m using Nucleo-G474RE to send a bit stream over Simulink, instead of receiving 24 bits on the oscilloscope i can read only 8 bits, which are supposed to be the 8 bits in the middle that have the address of the peripheral and the status of the I2C block gives me 516 which is not on the documentation from matlab. I’m using Nucleo-G474RE to send a bit stream over Simulink, instead of receiving 24 bits on the oscilloscope i can read only 8 bits, which are supposed to be the 8 bits in the middle that have the address of the peripheral and the status of the I2C block gives me 516 which is not on the documentation from matlab. i2c, nucleo-g474re MATLAB Answers — New Questions
2D-3D image registration – COMPLETE 6D ESTIMATION
Hello everyone,
I am simulating a 2D–3D image registration pipeline for 6D motion estimation (3D translation + rotation) from two 2D X-ray projections, based on the following paper:
[1] Fu & Kuduvalli, “A fast, accurate, and automatic 2D–3D image registration for image-guided cranial radiosurgery,” Med. Phys., 2008.
The pipeline consists of:
Generating a 3D CT volume with known fiducials
Applying a known 6D rigid transformation to the CT
Generating two 2D projections (A and B)
Performing accurate 2D–2D registration between each X-ray and its corresponding DRR
Estimating the final 6D transformation using geometric back-projection / analytical decomposition (as described in the paper)
Problem Description
The 2D image registrations are accurate and stable (x, y, in-plane rotation, and roll are recovered correctly for both projections).
However, the final 6D estimation shows significant error, especially in:
Out-of-plane translation
Out-of-plane rotations
Because the 2D registrations behave as expected, I suspect the issue is in the geometric back-projection / 2D-to-3D decomposition step, rather than in the similarity metric or optimization.
Specifically, I am unsure whether:
My implementation of the analytical back-projection equations is correct
The projection geometry (scaling, sign conventions, coordinate frames) is consistent between the two views
Additional geometric constraints or assumptions are required for observability
What I Am Looking For
I would greatly appreciate any insights or suggestions on:
Correct implementation of 2D-to-3D geometric back-projection for dual-view registration
Common pitfalls in coordinate systems, scaling factors, or sign conventions
Whether a cone-beam vs. parallel-beam assumption materially affects the 6D solution
Any recommended validation or sanity checks for this type of pipeline
I have attached the MATLAB code below for reference.
Thank you very much for your time and support.
Reference
[1] Fu, D., & Kuduvalli, G. (2008). A fast, accurate, and automatic 2D–3D image registration for image-guided cranial radiosurgery. Medical Physics, 35(5), 2180–2194.Hello everyone,
I am simulating a 2D–3D image registration pipeline for 6D motion estimation (3D translation + rotation) from two 2D X-ray projections, based on the following paper:
[1] Fu & Kuduvalli, “A fast, accurate, and automatic 2D–3D image registration for image-guided cranial radiosurgery,” Med. Phys., 2008.
The pipeline consists of:
Generating a 3D CT volume with known fiducials
Applying a known 6D rigid transformation to the CT
Generating two 2D projections (A and B)
Performing accurate 2D–2D registration between each X-ray and its corresponding DRR
Estimating the final 6D transformation using geometric back-projection / analytical decomposition (as described in the paper)
Problem Description
The 2D image registrations are accurate and stable (x, y, in-plane rotation, and roll are recovered correctly for both projections).
However, the final 6D estimation shows significant error, especially in:
Out-of-plane translation
Out-of-plane rotations
Because the 2D registrations behave as expected, I suspect the issue is in the geometric back-projection / 2D-to-3D decomposition step, rather than in the similarity metric or optimization.
Specifically, I am unsure whether:
My implementation of the analytical back-projection equations is correct
The projection geometry (scaling, sign conventions, coordinate frames) is consistent between the two views
Additional geometric constraints or assumptions are required for observability
What I Am Looking For
I would greatly appreciate any insights or suggestions on:
Correct implementation of 2D-to-3D geometric back-projection for dual-view registration
Common pitfalls in coordinate systems, scaling factors, or sign conventions
Whether a cone-beam vs. parallel-beam assumption materially affects the 6D solution
Any recommended validation or sanity checks for this type of pipeline
I have attached the MATLAB code below for reference.
Thank you very much for your time and support.
Reference
[1] Fu, D., & Kuduvalli, G. (2008). A fast, accurate, and automatic 2D–3D image registration for image-guided cranial radiosurgery. Medical Physics, 35(5), 2180–2194. Hello everyone,
I am simulating a 2D–3D image registration pipeline for 6D motion estimation (3D translation + rotation) from two 2D X-ray projections, based on the following paper:
[1] Fu & Kuduvalli, “A fast, accurate, and automatic 2D–3D image registration for image-guided cranial radiosurgery,” Med. Phys., 2008.
The pipeline consists of:
Generating a 3D CT volume with known fiducials
Applying a known 6D rigid transformation to the CT
Generating two 2D projections (A and B)
Performing accurate 2D–2D registration between each X-ray and its corresponding DRR
Estimating the final 6D transformation using geometric back-projection / analytical decomposition (as described in the paper)
Problem Description
The 2D image registrations are accurate and stable (x, y, in-plane rotation, and roll are recovered correctly for both projections).
However, the final 6D estimation shows significant error, especially in:
Out-of-plane translation
Out-of-plane rotations
Because the 2D registrations behave as expected, I suspect the issue is in the geometric back-projection / 2D-to-3D decomposition step, rather than in the similarity metric or optimization.
Specifically, I am unsure whether:
My implementation of the analytical back-projection equations is correct
The projection geometry (scaling, sign conventions, coordinate frames) is consistent between the two views
Additional geometric constraints or assumptions are required for observability
What I Am Looking For
I would greatly appreciate any insights or suggestions on:
Correct implementation of 2D-to-3D geometric back-projection for dual-view registration
Common pitfalls in coordinate systems, scaling factors, or sign conventions
Whether a cone-beam vs. parallel-beam assumption materially affects the 6D solution
Any recommended validation or sanity checks for this type of pipeline
I have attached the MATLAB code below for reference.
Thank you very much for your time and support.
Reference
[1] Fu, D., & Kuduvalli, G. (2008). A fast, accurate, and automatic 2D–3D image registration for image-guided cranial radiosurgery. Medical Physics, 35(5), 2180–2194. registration, 2d-3d image registration, optimization, iterative joint optimization MATLAB Answers — New Questions
Microsoft Tenant-to-Tenant Migration Orchestrator
Why is Microsoft Getting into the Tenant-to-Tenant Migration Market

I’ve listened to many Microsoft presentations about tenant-to-tenant (T2T) migration over the years. Each time, Microsoft’s interest faded when they realized the complexities involved in moving information from one Microsoft 365 tenant to another. It’s not just the engineering work to build migration functionality. After all, Microsoft has probably moved more mailboxes into the cloud and around the cloud than any other company. The problems seemed to be with support. Rather, the lack of desire within Microsoft to be responsible for migration projects that can become very sticky and troublesome.
It seemed like Microsoft was happy to leave the difficulties involved in T2T to ISVs, many of whom like Quest, BitTitan, ShareGate, and AvePoint, have worked on T2T tools and techniques for years and have lots of experience in this area. Indeed, Microsoft’s T2T migration architecture model (from 2021) highlights the use of third-party tools to move data. But now we have the Migration Orchestrator (in preview), announced in MC1198079 (16 December 2025).
The Migration Orchestrator can move mailboxes, OneDrive for Business accounts, and Teams chats. Mailbox migration has existed for a while and can handle primary and archive mailboxes.
Licensing
ISVs charge for their T2T solutions, and so does Microsoft. User accounts involved in a migration need Microsoft 365 E3 or E5 licenses and a Cross-Tenant User Data Migration license is required for each account to move mailbox and/or OneDrive information.
PowerShell Driven Migration
It might surprise some, but the Migration Orchestrator is controlled by a set of Graph APIs accessed as Microsoft Graph PowerShell SDK cmdlets (in version 2.33) like New-MgBetaCrossTenantMigrationJob (submits a new migration job for processing).
The implementation doesn’t surprise me at all. T2T migration processes are usually carefully planned and executed with lots of up-front work like the cross-tenant identity mapping process that must be done before any migration jobs can be run. It might be nice to have a UX but given that T2T migration is not core Microsoft 365 functionality, it makes sense to run everything through PowerShell.
Downsides
Like any migration, some restrictions exist. Microsoft won’t move mailboxes if they’re covered by any sort of hold, so some up-front work might be needed to determine whether any holds exist for mailboxes that should move and if it’s possible to release those holds without losing data. Releasing mailboxes from eDiscovery holds is usually the hardest problem because the fact that mailboxes are held for eDiscovery is a good indicator that some ongoing investigations need the information.
Another issue is that only IPM (data visible to email clients) is moved. Anything stored in non-IPM folders like Teams compliance records is left behind. This is in line with the general stance that compliance data belongs to the tenant in which the records are generated.
Migration orchestrator doesn’t include a method to deal with messages and documents protected by sensitivity labels. The way sensitivity labels work, the labels from one tenant must be removed before items leave the source tenant. Microsoft deals with the issue in a rather old blog (2019). However, ISVs have worked out ways to migrate protected content, and this could be an important point to consider depending on how your tenant uses sensitivity labels.
Microsoft’s Big Advantage
The biggest thing going for the Migration Orchestrator is that the data it processes remains within Microsoft datacenters. There’s no need to move data out of a tenant to an intermediate location before moving the data back to the target tenant. Given the amount of information accumulated in mailboxes, OneDrive accounts, and Teams chat, the speed of migration is important, and you can’t go any faster than when information stays within Microsoft.
ISVs will hate that Microsoft has the speed advantage, but they’ll argue that a phased and controlled migration can accomplish the same goal, albeit slower. ISVs will also point out their ability to deal with different use cases, like protected documents. And ISVs will love that Microsoft has legitimized T2T as a valid approach for tenant splits, joins, and mergers, so everyone will be happy.
Insight like this doesn’t come easily. You’ve got to know the technology and understand how to look behind the scenes. Benefit from the knowledge and experience of the Office 365 for IT Pros team by subscribing to the best eBook covering Office 365 and the wider Microsoft 365 ecosystem.
How to specify constant vs unique parameters in System ID with multiple experiments?
For multiple experiments, I’d like to fit a simple process model where 2 poles (tp1, tp2) are the same for all experiments, but gain (Kp), zero (tz) and time delay (td) can be different for each experiment. Is there an elegant way to to this with the System Identification Toolbox? Each experiment comprises 2 time series: one forcing input & one response ouput.For multiple experiments, I’d like to fit a simple process model where 2 poles (tp1, tp2) are the same for all experiments, but gain (Kp), zero (tz) and time delay (td) can be different for each experiment. Is there an elegant way to to this with the System Identification Toolbox? Each experiment comprises 2 time series: one forcing input & one response ouput. For multiple experiments, I’d like to fit a simple process model where 2 poles (tp1, tp2) are the same for all experiments, but gain (Kp), zero (tz) and time delay (td) can be different for each experiment. Is there an elegant way to to this with the System Identification Toolbox? Each experiment comprises 2 time series: one forcing input & one response ouput. system identification, procest MATLAB Answers — New Questions
How to create a duplicate test case programmatically, just like copy/paste in the test manager under the same test suite.
Hello,
I am currently working with the Simulink Test Manager and need assistance with programmatically duplicating test cases within the same test suite, similar to the "copy/paste" functionality available in the Test Manager interface.
I have a test suite loaded, and I want to create new test cases by duplicating existing ones. The goal is to maintain all properties (including the scripts and variable definitions in the callback sections) and settings of the original test case in the new duplicates.
So far, I have tried to retrieve the existing test case I wish to duplicate into the workspace and used dot operations like copy and duplicate, but these methods did not work as expected. For example:
newTestCase = existingTestCase.copy;
newTestCase = existingTestCase.duplicate;
A follow-up question, is it possible to programmatically edit or modify the scripts written in the callback sections of test cases? I am looking to automate the process of creating multiple test cases based on an existing one that was manually created in the Test Manager.
If anyone has experience with this or can provide guidance on how to achieve this programmatically, I would greatly appreciate your help!
Thank youHello,
I am currently working with the Simulink Test Manager and need assistance with programmatically duplicating test cases within the same test suite, similar to the "copy/paste" functionality available in the Test Manager interface.
I have a test suite loaded, and I want to create new test cases by duplicating existing ones. The goal is to maintain all properties (including the scripts and variable definitions in the callback sections) and settings of the original test case in the new duplicates.
So far, I have tried to retrieve the existing test case I wish to duplicate into the workspace and used dot operations like copy and duplicate, but these methods did not work as expected. For example:
newTestCase = existingTestCase.copy;
newTestCase = existingTestCase.duplicate;
A follow-up question, is it possible to programmatically edit or modify the scripts written in the callback sections of test cases? I am looking to automate the process of creating multiple test cases based on an existing one that was manually created in the Test Manager.
If anyone has experience with this or can provide guidance on how to achieve this programmatically, I would greatly appreciate your help!
Thank you Hello,
I am currently working with the Simulink Test Manager and need assistance with programmatically duplicating test cases within the same test suite, similar to the "copy/paste" functionality available in the Test Manager interface.
I have a test suite loaded, and I want to create new test cases by duplicating existing ones. The goal is to maintain all properties (including the scripts and variable definitions in the callback sections) and settings of the original test case in the new duplicates.
So far, I have tried to retrieve the existing test case I wish to duplicate into the workspace and used dot operations like copy and duplicate, but these methods did not work as expected. For example:
newTestCase = existingTestCase.copy;
newTestCase = existingTestCase.duplicate;
A follow-up question, is it possible to programmatically edit or modify the scripts written in the callback sections of test cases? I am looking to automate the process of creating multiple test cases based on an existing one that was manually created in the Test Manager.
If anyone has experience with this or can provide guidance on how to achieve this programmatically, I would greatly appreciate your help!
Thank you create duplicate test case MATLAB Answers — New Questions
Matlab R2025b failed to lunch after installing on Debian 13 (Trixie)
I´ve tried to install Matlab R2025b on Debian 13. I could install it via this commands:
sudo unzip -XK matlab.zip -d matlab_install
cd matlab_install
sudo su
xhost +SI:localuser:root
sudo ./install
This mehod I´ve used for installing Matlab R2024b on Debian 12.
Matlab R2025b should support Debian 13 see here: https://de.mathworks.com/support/requirements/matlab-linux.html
Since no other older Matlab Version supports Debian 13 I had only the choice for Matlab R2025b.
The installation was fine, but when I lunch it from terminal via this command:
matlab
it opens the matlab porgramm looks like a normal start (left at the buttom of the matlab programm it says initializing…), but in a sudden it stops and printing this message:
Unable to communicate with required MathWorks services (error 5201)
For help with this issue, contact support:
https://www.mathworks.com/support/contact_us.html
Unable to launch MVM server: License Error: Licensing shutdown
When I search for an activation file like in the installed folder there isn´t anyone in /urs/local/MATLAB/R2025b/bin/glnxa64.
Has somebody managed to run matlab on Debian 13?
Thank you very much for you help in forward.I´ve tried to install Matlab R2025b on Debian 13. I could install it via this commands:
sudo unzip -XK matlab.zip -d matlab_install
cd matlab_install
sudo su
xhost +SI:localuser:root
sudo ./install
This mehod I´ve used for installing Matlab R2024b on Debian 12.
Matlab R2025b should support Debian 13 see here: https://de.mathworks.com/support/requirements/matlab-linux.html
Since no other older Matlab Version supports Debian 13 I had only the choice for Matlab R2025b.
The installation was fine, but when I lunch it from terminal via this command:
matlab
it opens the matlab porgramm looks like a normal start (left at the buttom of the matlab programm it says initializing…), but in a sudden it stops and printing this message:
Unable to communicate with required MathWorks services (error 5201)
For help with this issue, contact support:
https://www.mathworks.com/support/contact_us.html
Unable to launch MVM server: License Error: Licensing shutdown
When I search for an activation file like in the installed folder there isn´t anyone in /urs/local/MATLAB/R2025b/bin/glnxa64.
Has somebody managed to run matlab on Debian 13?
Thank you very much for you help in forward. I´ve tried to install Matlab R2025b on Debian 13. I could install it via this commands:
sudo unzip -XK matlab.zip -d matlab_install
cd matlab_install
sudo su
xhost +SI:localuser:root
sudo ./install
This mehod I´ve used for installing Matlab R2024b on Debian 12.
Matlab R2025b should support Debian 13 see here: https://de.mathworks.com/support/requirements/matlab-linux.html
Since no other older Matlab Version supports Debian 13 I had only the choice for Matlab R2025b.
The installation was fine, but when I lunch it from terminal via this command:
matlab
it opens the matlab porgramm looks like a normal start (left at the buttom of the matlab programm it says initializing…), but in a sudden it stops and printing this message:
Unable to communicate with required MathWorks services (error 5201)
For help with this issue, contact support:
https://www.mathworks.com/support/contact_us.html
Unable to launch MVM server: License Error: Licensing shutdown
When I search for an activation file like in the installed folder there isn´t anyone in /urs/local/MATLAB/R2025b/bin/glnxa64.
Has somebody managed to run matlab on Debian 13?
Thank you very much for you help in forward. debian13, linux, installation MATLAB Answers — New Questions









