Category: News
MATLAB crashes on macOS Sonoma when clearing a figure.
I am repeatedly plotting on the same figure object (so that a long-running code doesn’t continuously steal focus for each new figure) and using clf(fig) to clear the figure each time. However, this consistently causes MATLAB to crash on my Mac.
I’ve seen many forum posts on this type of behavior when the figure closes, but nothing on clf specifically. I tried a few solutions:
Adding a line to my startup.m file (https://www.mathworks.com/matlabcentral/answers/2039461-matlab-freezes-i-am-using-mac-apple-m2-max-osx-sonoma, https://www.mathworks.com/matlabcentral/answers/1808195-matlab-r2022a-freezes-on-macos-monterey-12-5-1-when-closing-a-figure#answer_1324680)
Changing clf(fig) to delete(fig) or reset(fig)
Adding pause(0.1) or pause(1) before the clf (this resulted in a crash after ~20 and ~30 figures, respectively, instead of just 1 without it).
I set figure visibility to ‘off’. This tentatively seems to allow me to plot without crashing, but obviously with the limitation of not being able to see the plots as they’re generated! For some plots this is ok for me, for others it is not, such as when I’m plotting movies and want to verify that they’re accurate before wasting time plotting each frame.
I am on an M1 Mac 16GB RAM running MacOS Sonoma 14.5. Is there anything to be done so I can view my figures while plotting them?I am repeatedly plotting on the same figure object (so that a long-running code doesn’t continuously steal focus for each new figure) and using clf(fig) to clear the figure each time. However, this consistently causes MATLAB to crash on my Mac.
I’ve seen many forum posts on this type of behavior when the figure closes, but nothing on clf specifically. I tried a few solutions:
Adding a line to my startup.m file (https://www.mathworks.com/matlabcentral/answers/2039461-matlab-freezes-i-am-using-mac-apple-m2-max-osx-sonoma, https://www.mathworks.com/matlabcentral/answers/1808195-matlab-r2022a-freezes-on-macos-monterey-12-5-1-when-closing-a-figure#answer_1324680)
Changing clf(fig) to delete(fig) or reset(fig)
Adding pause(0.1) or pause(1) before the clf (this resulted in a crash after ~20 and ~30 figures, respectively, instead of just 1 without it).
I set figure visibility to ‘off’. This tentatively seems to allow me to plot without crashing, but obviously with the limitation of not being able to see the plots as they’re generated! For some plots this is ok for me, for others it is not, such as when I’m plotting movies and want to verify that they’re accurate before wasting time plotting each frame.
I am on an M1 Mac 16GB RAM running MacOS Sonoma 14.5. Is there anything to be done so I can view my figures while plotting them? I am repeatedly plotting on the same figure object (so that a long-running code doesn’t continuously steal focus for each new figure) and using clf(fig) to clear the figure each time. However, this consistently causes MATLAB to crash on my Mac.
I’ve seen many forum posts on this type of behavior when the figure closes, but nothing on clf specifically. I tried a few solutions:
Adding a line to my startup.m file (https://www.mathworks.com/matlabcentral/answers/2039461-matlab-freezes-i-am-using-mac-apple-m2-max-osx-sonoma, https://www.mathworks.com/matlabcentral/answers/1808195-matlab-r2022a-freezes-on-macos-monterey-12-5-1-when-closing-a-figure#answer_1324680)
Changing clf(fig) to delete(fig) or reset(fig)
Adding pause(0.1) or pause(1) before the clf (this resulted in a crash after ~20 and ~30 figures, respectively, instead of just 1 without it).
I set figure visibility to ‘off’. This tentatively seems to allow me to plot without crashing, but obviously with the limitation of not being able to see the plots as they’re generated! For some plots this is ok for me, for others it is not, such as when I’m plotting movies and want to verify that they’re accurate before wasting time plotting each frame.
I am on an M1 Mac 16GB RAM running MacOS Sonoma 14.5. Is there anything to be done so I can view my figures while plotting them? mac, sonoma, plot, plotting, figure, crash MATLAB Answers — New Questions
How do I copy figure properties from one to another?
I would like to copy the properties from Fig 1 to Fig 2. How can that be done?I would like to copy the properties from Fig 1 to Fig 2. How can that be done? I would like to copy the properties from Fig 1 to Fig 2. How can that be done? star strider, walter roberson, torsten, dyuman joshi MATLAB Answers — New Questions
Vector field graph from a data file.
I am totally new to Matlab. I have data on file. I need to draw a 2-D vector field graph of the data.
I would appreciate detailed instructions as this is my first attempt as using Matlab.
Much apprrciate any advice.
RegardsI am totally new to Matlab. I have data on file. I need to draw a 2-D vector field graph of the data.
I would appreciate detailed instructions as this is my first attempt as using Matlab.
Much apprrciate any advice.
Regards I am totally new to Matlab. I have data on file. I need to draw a 2-D vector field graph of the data.
I would appreciate detailed instructions as this is my first attempt as using Matlab.
Much apprrciate any advice.
Regards vector field graph MATLAB Answers — New Questions
How to implement MultiStart to find a good fit of two curves at the same time with real data such as our curves are governed by an ODE system?
% Set up the problem for MultiStart
problem = createOptimProblem(‘lsqcurvefit’,’x0′,k0,’objective’,@simulatedhs,…
‘lb’,zeros(size(k0)),’xdata’,tforward ,’ydata’,[Hdata,HSdata] );
ms = MultiStart;
[k,fval,Exitflag,Output,Solutions] = run(ms,problem,50);
simulated_data = simulatedhs(k,tforward);
X=simulated_data(:,1);
Z=simulated_data(:,2);
%plot the result
figure(5)
plot(tforward,Hdata ,tforward,X)
plot(tforward,Hdata,tforward,Y)
legend(‘Data’,’Fitted result’)% Set up the problem for MultiStart
problem = createOptimProblem(‘lsqcurvefit’,’x0′,k0,’objective’,@simulatedhs,…
‘lb’,zeros(size(k0)),’xdata’,tforward ,’ydata’,[Hdata,HSdata] );
ms = MultiStart;
[k,fval,Exitflag,Output,Solutions] = run(ms,problem,50);
simulated_data = simulatedhs(k,tforward);
X=simulated_data(:,1);
Z=simulated_data(:,2);
%plot the result
figure(5)
plot(tforward,Hdata ,tforward,X)
plot(tforward,Hdata,tforward,Y)
legend(‘Data’,’Fitted result’) % Set up the problem for MultiStart
problem = createOptimProblem(‘lsqcurvefit’,’x0′,k0,’objective’,@simulatedhs,…
‘lb’,zeros(size(k0)),’xdata’,tforward ,’ydata’,[Hdata,HSdata] );
ms = MultiStart;
[k,fval,Exitflag,Output,Solutions] = run(ms,problem,50);
simulated_data = simulatedhs(k,tforward);
X=simulated_data(:,1);
Z=simulated_data(:,2);
%plot the result
figure(5)
plot(tforward,Hdata ,tforward,X)
plot(tforward,Hdata,tforward,Y)
legend(‘Data’,’Fitted result’) parameter estimation, curve fitting, multistart, oprimization, global minimum MATLAB Answers — New Questions
Sumproduct with three criteria, one of which is an or statement with two dates
Hi everyone,
This is a complex endeavor for me. I am attempting to use sumproduct with three criteria on another tab.
Criteria 1: If column C indicates “YES”
Criteria 2: If column F indicates “Standalone Service”
Criteria 3: If either columns AA or AB have August in the date
Here’s the formula I’m trying to work with
=SUMPRODUCT((Master_Calendar!$F$3:$F$503=”Standalone Service”)*(Master_Calendar!$C$3:$C503=”YES”)*((MONTH(Master_Calendar!$AA$3:$AA$503)=8)+(MONTH(Master_Calendar!$AB$3:$AB$503)=8)))
I don’t know what I’m doing wrong
Thanks
Hi everyone, This is a complex endeavor for me. I am attempting to use sumproduct with three criteria on another tab.Criteria 1: If column C indicates “YES”Criteria 2: If column F indicates “Standalone Service”Criteria 3: If either columns AA or AB have August in the dateHere’s the formula I’m trying to work with=SUMPRODUCT((Master_Calendar!$F$3:$F$503=”Standalone Service”)*(Master_Calendar!$C$3:$C503=”YES”)*((MONTH(Master_Calendar!$AA$3:$AA$503)=8)+(MONTH(Master_Calendar!$AB$3:$AB$503)=8)))I don’t know what I’m doing wrong Thanks Read More
outlook calendar
Hello everyone,
I have some calendars in Outlook that I no longer need. Is there a way to remove them, please? I want to keep the email inboxes, but I have two unnecessary calendars. I use iCloud for my calendars.
Thank you,
Si
Hello everyone,I have some calendars in Outlook that I no longer need. Is there a way to remove them, please? I want to keep the email inboxes, but I have two unnecessary calendars. I use iCloud for my calendars.Thank you,Si Read More
MDI – licensing for multiple isolated AD forests
Hi,
We have the following setup:
400 humansstandard AD domain in a single forest (sync’ed via AADConnect to the Entra tenant)
500 AD accounts (user accounts + service accounts),
450 synced to Entra ID (some on-prem service accounts are not synced),
400 accounts with M365 E5 licenses (RBAC accounts do not get any licenses),
MDI sensors installed3 separate dev/UAT/prod AD domains (each in a separate forest, no trusts, isolated): 20 accounts, 300 accounts, 500 accounts (prod AD has many accounts for external clients/consultants/etc).
accounts not synchronized to anywhere
we want to start using MS Defender for Identity for these domains to sync to the existing MDI workspace.
1. Are these 400 M365 E5 licenses enough for the whole environment (1+3 AD domains) ?
2. If not, what is the final count of licenses needed?
3. how many licenses need to be bought and of which SKU?
Hi, We have the following setup:400 humansstandard AD domain in a single forest (sync’ed via AADConnect to the Entra tenant)500 AD accounts (user accounts + service accounts),450 synced to Entra ID (some on-prem service accounts are not synced),400 accounts with M365 E5 licenses (RBAC accounts do not get any licenses),MDI sensors installed3 separate dev/UAT/prod AD domains (each in a separate forest, no trusts, isolated): 20 accounts, 300 accounts, 500 accounts (prod AD has many accounts for external clients/consultants/etc).accounts not synchronized to anywherewe want to start using MS Defender for Identity for these domains to sync to the existing MDI workspace.1. Are these 400 M365 E5 licenses enough for the whole environment (1+3 AD domains) ?2. If not, what is the final count of licenses needed?3. how many licenses need to be bought and of which SKU? Read More
IFS displaying spill range and not just one result?
Hi,
I am using the AND function with two criteria inside (e.g if equal to 5 and 10) for a range of cells (vertically, for example A1:A10) but only 1 result appears. How do I spill all results for all 10 cells and not just have the first true result outputted?
For example output should be TRUE, FALSE, FALSE, ETC with TRUE and FALSE being their respective values.
Right now output is only TRUE.
Thanks!
Hi, I am using the AND function with two criteria inside (e.g if equal to 5 and 10) for a range of cells (vertically, for example A1:A10) but only 1 result appears. How do I spill all results for all 10 cells and not just have the first true result outputted? For example output should be TRUE, FALSE, FALSE, ETC with TRUE and FALSE being their respective values. Right now output is only TRUE. Thanks! Read More
Name Reservation on Azure Container Registry
What’s changing?
Starting August 1st, Azure Container Registry (ACR) will update its behavior regarding the deletion and re-creation of registries. ACR will prevent the reuse of a subdomain name, e.g. abc123.azurecr.io, for a period after the resource is deleted. This updated behavior enhances security and prevents subdomain takeovers by automatically reserving registry names during the creation of the ACR resource, without requiring any additional action or configuration from customers.
Once a resource name is reserved, it remains reserved from the moment of creation and throughout an extended period following the deletion of the resource (referred to as a cooldown period). During this cooldown period, subscriptions not associated with the original Azure AD tenant that created the resource will be unable to use the same name for a new registry. After the cooldown period concludes, the name reservation is lifted, allowing any subscription to create a registry with the previously reserved name.
Customer impact
Most customers will not be impacted by this update. If you delete a registry, you can create a new one with the same name within the cooldown period, provided the subscription belongs to the same Azure Active Directory (AAD) tenant. This ensures a seamless experience for customers who routinely create –> delete –> recreate resources with the same name within the same AAD tenant for testing and production workflows.
The name reservation feature guarantees that customers have exclusive rights to a resource name between its deletion and subsequent recreation, preventing other customers from claiming the same name during this interval.
Learn more
To learn more about Azure Container Registry: Azure Container Registry documentation
To learn more about the different ways to avoid dangling domains and subdomains takeover: Prevent dangling DNS entries and avoid subdomain takeover
To learn more about the one-to-many relationship between an Azure AD tenant and an Azure subscription: Azure subscriptions and Azure AD Tenants
Microsoft Tech Community – Latest Blogs –Read More
Parallel Workers Sometimes Can’t Access Function
I’m building an app that uses the Parallel Processing toolbox to run Simulink models in parallel. I create a list of FevalFuture objects for the workers, and assign their tasks with parfeval on a function I wrote. I don’t have my code on me at the moment, but it’s basically
for p = 1:numel(taskList)
futures(p) = parfeval(appName.parallelSimulationTask(taskList{p}));
end
It was working at one point, but now it takes 3 tries to successfully run.
After the pool is first opened, none of the tasks run at all. They all immediately return a MATLAB:class:MethodRestricted error saying they cannot access the function I’m sending them.
The second time I run my app, with the pool still open, only some of them fail with the same error. The rest run successfully.
The third time and then on, everything runs perfectly with no errors.
Does anyone have any idea why parallel workers would sometimes be unable to access a function?
I don’t have my code on me at the moment, but I can add it later if necessary.I’m building an app that uses the Parallel Processing toolbox to run Simulink models in parallel. I create a list of FevalFuture objects for the workers, and assign their tasks with parfeval on a function I wrote. I don’t have my code on me at the moment, but it’s basically
for p = 1:numel(taskList)
futures(p) = parfeval(appName.parallelSimulationTask(taskList{p}));
end
It was working at one point, but now it takes 3 tries to successfully run.
After the pool is first opened, none of the tasks run at all. They all immediately return a MATLAB:class:MethodRestricted error saying they cannot access the function I’m sending them.
The second time I run my app, with the pool still open, only some of them fail with the same error. The rest run successfully.
The third time and then on, everything runs perfectly with no errors.
Does anyone have any idea why parallel workers would sometimes be unable to access a function?
I don’t have my code on me at the moment, but I can add it later if necessary. I’m building an app that uses the Parallel Processing toolbox to run Simulink models in parallel. I create a list of FevalFuture objects for the workers, and assign their tasks with parfeval on a function I wrote. I don’t have my code on me at the moment, but it’s basically
for p = 1:numel(taskList)
futures(p) = parfeval(appName.parallelSimulationTask(taskList{p}));
end
It was working at one point, but now it takes 3 tries to successfully run.
After the pool is first opened, none of the tasks run at all. They all immediately return a MATLAB:class:MethodRestricted error saying they cannot access the function I’m sending them.
The second time I run my app, with the pool still open, only some of them fail with the same error. The rest run successfully.
The third time and then on, everything runs perfectly with no errors.
Does anyone have any idea why parallel workers would sometimes be unable to access a function?
I don’t have my code on me at the moment, but I can add it later if necessary. parallel computing, simulink, methodrestricted MATLAB Answers — New Questions
How to get “Clean” edges on a surface plot?
Hello All,
I am trying to plot a surface using the surf() command with some imported shape data from a CSV. The shape in question is created by revolving our data from 0 to 180 degrees. The data starts out as axial position and a corresponding radius. Essentially, it’s a half-pipe with asymmetrically tapered ends.
I’ve been able to import my data, revolve it, and use meshgrid() and griddata() to create the Z coordinate matrix. However, as you can see from my attached screenshot, there are "flats" at the ends of the revolved shape. I have a feeling this has something to do with the interpolation, but I’m not very familiar with this type of stuff. I can’t seem to get rid of the flat protrusions.
In my attempts to rectify this, the closest I could get was ending up with jagged edges instead. But this won’t work either since this shape data is going to be imported into a Simscape model, and we want it to be as true to life as possible (no flat protrusions and no jagged edges).
Any ideas? Data attached as a text file (wouldn’t let me attach a CSV) and code pasted below.
Thanks Everyone!
GS = readtable(‘GSDataEdited.csv’);
GS = table2array(GS);
GSx = GS(:, 1);
GSrad = GS(:, 2);
% Define the angle step (in degrees)
angle_step = 7.5;
all_points = [];
% Loop through angles from 0 to 180 degrees
for angle = 0:angle_step:180
% Convert angle to radians
theta = deg2rad(angle);
% Create rotation matrix for current angle
R = [1 0 0; 0 cos(theta) -sin(theta); 0 sin(theta) cos(theta)];
% Rotate the coordinates
rotated_coords = R * [GSx’; GSrad’; zeros(size(GSx’))];
% Append the rotated coordinates to the matrix
all_points = [all_points, rotated_coords];
end
all_points = all_points’;
GSx = all_points(:, 1);
GSy = all_points(:, 2);
GSz = all_points(:, 3);
GSall = [GSx,GSy,GSz;GSx,GSy,-GSz];
GSall = unique(GSall, ‘rows’);
% Define grid for interpolation
[GSX,GSY] = meshgrid(min(GSx):1:max(GSx), min(GSy):1:max(GSy)); % Define the grid spacing
% Interpolate data onto grid
ZVect = griddata(GSx, GSy, GSz, GSX, GSY, ‘linear’);
XVect = GSX(1, :);
YVect = GSY(:, 1);
ZVect(isnan(ZVect))=0;
surf(XVect, YVect, ZVect, ‘EdgeColor’, ‘none’)Hello All,
I am trying to plot a surface using the surf() command with some imported shape data from a CSV. The shape in question is created by revolving our data from 0 to 180 degrees. The data starts out as axial position and a corresponding radius. Essentially, it’s a half-pipe with asymmetrically tapered ends.
I’ve been able to import my data, revolve it, and use meshgrid() and griddata() to create the Z coordinate matrix. However, as you can see from my attached screenshot, there are "flats" at the ends of the revolved shape. I have a feeling this has something to do with the interpolation, but I’m not very familiar with this type of stuff. I can’t seem to get rid of the flat protrusions.
In my attempts to rectify this, the closest I could get was ending up with jagged edges instead. But this won’t work either since this shape data is going to be imported into a Simscape model, and we want it to be as true to life as possible (no flat protrusions and no jagged edges).
Any ideas? Data attached as a text file (wouldn’t let me attach a CSV) and code pasted below.
Thanks Everyone!
GS = readtable(‘GSDataEdited.csv’);
GS = table2array(GS);
GSx = GS(:, 1);
GSrad = GS(:, 2);
% Define the angle step (in degrees)
angle_step = 7.5;
all_points = [];
% Loop through angles from 0 to 180 degrees
for angle = 0:angle_step:180
% Convert angle to radians
theta = deg2rad(angle);
% Create rotation matrix for current angle
R = [1 0 0; 0 cos(theta) -sin(theta); 0 sin(theta) cos(theta)];
% Rotate the coordinates
rotated_coords = R * [GSx’; GSrad’; zeros(size(GSx’))];
% Append the rotated coordinates to the matrix
all_points = [all_points, rotated_coords];
end
all_points = all_points’;
GSx = all_points(:, 1);
GSy = all_points(:, 2);
GSz = all_points(:, 3);
GSall = [GSx,GSy,GSz;GSx,GSy,-GSz];
GSall = unique(GSall, ‘rows’);
% Define grid for interpolation
[GSX,GSY] = meshgrid(min(GSx):1:max(GSx), min(GSy):1:max(GSy)); % Define the grid spacing
% Interpolate data onto grid
ZVect = griddata(GSx, GSy, GSz, GSX, GSY, ‘linear’);
XVect = GSX(1, :);
YVect = GSY(:, 1);
ZVect(isnan(ZVect))=0;
surf(XVect, YVect, ZVect, ‘EdgeColor’, ‘none’) Hello All,
I am trying to plot a surface using the surf() command with some imported shape data from a CSV. The shape in question is created by revolving our data from 0 to 180 degrees. The data starts out as axial position and a corresponding radius. Essentially, it’s a half-pipe with asymmetrically tapered ends.
I’ve been able to import my data, revolve it, and use meshgrid() and griddata() to create the Z coordinate matrix. However, as you can see from my attached screenshot, there are "flats" at the ends of the revolved shape. I have a feeling this has something to do with the interpolation, but I’m not very familiar with this type of stuff. I can’t seem to get rid of the flat protrusions.
In my attempts to rectify this, the closest I could get was ending up with jagged edges instead. But this won’t work either since this shape data is going to be imported into a Simscape model, and we want it to be as true to life as possible (no flat protrusions and no jagged edges).
Any ideas? Data attached as a text file (wouldn’t let me attach a CSV) and code pasted below.
Thanks Everyone!
GS = readtable(‘GSDataEdited.csv’);
GS = table2array(GS);
GSx = GS(:, 1);
GSrad = GS(:, 2);
% Define the angle step (in degrees)
angle_step = 7.5;
all_points = [];
% Loop through angles from 0 to 180 degrees
for angle = 0:angle_step:180
% Convert angle to radians
theta = deg2rad(angle);
% Create rotation matrix for current angle
R = [1 0 0; 0 cos(theta) -sin(theta); 0 sin(theta) cos(theta)];
% Rotate the coordinates
rotated_coords = R * [GSx’; GSrad’; zeros(size(GSx’))];
% Append the rotated coordinates to the matrix
all_points = [all_points, rotated_coords];
end
all_points = all_points’;
GSx = all_points(:, 1);
GSy = all_points(:, 2);
GSz = all_points(:, 3);
GSall = [GSx,GSy,GSz;GSx,GSy,-GSz];
GSall = unique(GSall, ‘rows’);
% Define grid for interpolation
[GSX,GSY] = meshgrid(min(GSx):1:max(GSx), min(GSy):1:max(GSy)); % Define the grid spacing
% Interpolate data onto grid
ZVect = griddata(GSx, GSy, GSz, GSX, GSY, ‘linear’);
XVect = GSX(1, :);
YVect = GSY(:, 1);
ZVect(isnan(ZVect))=0;
surf(XVect, YVect, ZVect, ‘EdgeColor’, ‘none’) matlab, grid surface, surface, interpolation MATLAB Answers — New Questions
how to graph vector fields containing scalar
I’m trying to graph some vector fields .
F(x,y,z)-<1,2,z>
F(x,y)=<0.3, -0,4)
my code is look like this
>> [x,y,z]=meshgrid(-2:2,-2:2,-2:2);
>> u=1;
>> v=2;
>> s=z;
>> quiver(x,y,z,u,v,s)
Second one is similar.
>> [x,y,]=meshgrid(-2:2,-2:2);
>> u=0.3;
>> v=-0.4;
>> quiver(x,y, u,v )
I tried to use ones(size(v)) function but it doens’t work.
Any help would be helpful. Thank youI’m trying to graph some vector fields .
F(x,y,z)-<1,2,z>
F(x,y)=<0.3, -0,4)
my code is look like this
>> [x,y,z]=meshgrid(-2:2,-2:2,-2:2);
>> u=1;
>> v=2;
>> s=z;
>> quiver(x,y,z,u,v,s)
Second one is similar.
>> [x,y,]=meshgrid(-2:2,-2:2);
>> u=0.3;
>> v=-0.4;
>> quiver(x,y, u,v )
I tried to use ones(size(v)) function but it doens’t work.
Any help would be helpful. Thank you I’m trying to graph some vector fields .
F(x,y,z)-<1,2,z>
F(x,y)=<0.3, -0,4)
my code is look like this
>> [x,y,z]=meshgrid(-2:2,-2:2,-2:2);
>> u=1;
>> v=2;
>> s=z;
>> quiver(x,y,z,u,v,s)
Second one is similar.
>> [x,y,]=meshgrid(-2:2,-2:2);
>> u=0.3;
>> v=-0.4;
>> quiver(x,y, u,v )
I tried to use ones(size(v)) function but it doens’t work.
Any help would be helpful. Thank you vector field, vector, graph, plot MATLAB Answers — New Questions
Migration batches with office 365
Migration batches
I am getting this error even though I tested connection via
telnet imap.integra.net 143 and I get the command window
I also tested the one of the accounts on outlook and it worked just fine.
But with the Migration batches in Exchange admin center after it synced with errors
Here is the error for all.
Error: ImapAuthenticationException: The username or password for this account is incorrect, or IMAP access is disabled. –> Imap server reported an error during LOGIN indicating that authentication failed: ‘Authentication failed.’.
People I need real help!
Migration batchesI am getting this error even though I tested connection viatelnet imap.integra.net 143 and I get the command windowI also tested the one of the accounts on outlook and it worked just fine.But with the Migration batches in Exchange admin center after it synced with errorsHere is the error for all.Error: ImapAuthenticationException: The username or password for this account is incorrect, or IMAP access is disabled. –> Imap server reported an error during LOGIN indicating that authentication failed: ‘Authentication failed.’. People I need real help! Read More
August V1 Title Plan out now!
MPN Partner Portal Learning Resources page resources page for Training Services Partners
As always, don’t forget to check out the Courseware News & Overview tab!
Thank you
Hello, Partners —
The August Monthly Title Plan V1 is attached to this forum.
This Monthly Title Plan is also shared in:
MPN Partner Portal Learning Resources page resources page for Training Services Partners
MCT Lounge Tech community Lounge for MCTs
We have added four more courses that are coming soon, to the supporting PDF, to provide you with information per all new courses coming soon.
As always, don’t forget to check out the Courseware News & Overview tab!
Thank you
Read More
Matlab crash if i connect MotoHawk
How do I generate a native crash dump for MATLAB on a WINDOWS?
It’s show this: MATLAB crash file:C:UserscasperAppDataLocalTempmatlab_crash_dump.18464-1:
——————————————————————————–
Unknown exception 0xe0434352 detected at 2024-08-02 12:48:46 +0300
——————————————————————————–
Configuration:
Crash Decoding : Disabled – No sandbox or build area path
Crash Mode : continue (default)
Default Encoding : windows-1252
Deployed : false
Graphics Driver : Unknown hardware
Graphics card 1 : Intel Corporation ( 0x8086 ) Intel(R) UHD Graphics Version 27.20.100.9365 (2021-3-10)
Java Version : Java 1.8.0_202-b08 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed mode
MATLAB Architecture : win64
MATLAB Entitlement ID : 3514034
MATLAB Root : C:Program FilesMATLABR2020b
MATLAB Version : 9.9.0.2037887 (R2020b) Update 8
OpenGL : hardware
Operating System : Microsoft Windows 11 Home Single Language
Process ID : 18464
Processor ID : x86 Family 6 Model 126 Stepping 5, GenuineIntel
Session Key : 1a6fb761-06c5-4afa-9961-e6d8bf9d25a4
Window System : Version 10.0 (Build 22631)
Fault Count: 1
Abnormal termination:
Unknown exception 0xe0434352
Current Thread: ‘MCR 0 interpreter thread’ id 21248
Register State (from fault):
RAX = 00007ffdccca63e8 RBX = 000000a3a84f3d60
RCX = 000000a3a84f29d0 RDX = 000000a3a84f3530
RSP = 000000a3a84f2150 RBP = 000000a3a84f2830
RSI = 000000a3a84f4b60 RDI = 000000a3a84f2fe0
R8 = 0000000000000081 R9 = 000000a3a84f19f0
R10 = 00007ffde438e866 R11 = 000000a3a84f29d0
R12 = 0000000000000000 R13 = 000000a3a84f22b8
R14 = 0000000000000002 R15 = 000000a3a84f3148
RIP = 00007ffde1a4fabc EFL = 00000206
CS = 0033 FS = 0053 GS = 002b
Stack Trace (from fault):
[ 0] 0x00007ffde1a4fabc C:WINDOWSSystem32KERNELBASE.dll+00391868 RaiseException+00000108
[ 1] 0x00007ffdcdc32743 C:WINDOWSSYSTEM32VCRUNTIME140_1_CLR0400.dll+00010051 _NLG_Return2+00005619
[ 2] 0x00007ffde4414896 C:WINDOWSSYSTEM32ntdll.dll+00673942 RtlCaptureContext2+00001190
[ 3] 0x00007ffdcc4ae012 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00319506 StrongNameTokenFromPublicKey+00192754
[ 4] 0x00007ffdcc4c5e56 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00417366 StrongNameTokenFromPublicKey+00290614
[ 5] 0x00007ffdcc49891b C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00231707 StrongNameTokenFromPublicKey+00104955
[ 6] 0x00007ffdcc5ee7b5 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+01632181 DllCanUnloadNowInternal+00011525
[ 7] 0x00007ffd6ce31ce7 <unknown-module>+00000000
[ 8] 0x00007ffdd90f4238 C:Program Files (x86)WoodwardMCSMotoHawk2020b_sp5.2718BlocksMainmotohawk_sfun_check_license.mexw64+00016952 mexFunction+00012856
[ 9] 0x00007ffdd90f422c C:Program Files (x86)WoodwardMCSMotoHawk2020b_sp5.2718BlocksMainmotohawk_sfun_check_license.mexw64+00016940 mexFunction+00012844
[ 10] 0x0000000000000001 <unknown-module>+00000000
This error was detected while a MEX-file was running. If the MEX-file
is not an official MathWorks function, please examine its source code
for errors. Please consult the External Interfaces Guide for information
on debugging MEX-files.How do I generate a native crash dump for MATLAB on a WINDOWS?
It’s show this: MATLAB crash file:C:UserscasperAppDataLocalTempmatlab_crash_dump.18464-1:
——————————————————————————–
Unknown exception 0xe0434352 detected at 2024-08-02 12:48:46 +0300
——————————————————————————–
Configuration:
Crash Decoding : Disabled – No sandbox or build area path
Crash Mode : continue (default)
Default Encoding : windows-1252
Deployed : false
Graphics Driver : Unknown hardware
Graphics card 1 : Intel Corporation ( 0x8086 ) Intel(R) UHD Graphics Version 27.20.100.9365 (2021-3-10)
Java Version : Java 1.8.0_202-b08 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed mode
MATLAB Architecture : win64
MATLAB Entitlement ID : 3514034
MATLAB Root : C:Program FilesMATLABR2020b
MATLAB Version : 9.9.0.2037887 (R2020b) Update 8
OpenGL : hardware
Operating System : Microsoft Windows 11 Home Single Language
Process ID : 18464
Processor ID : x86 Family 6 Model 126 Stepping 5, GenuineIntel
Session Key : 1a6fb761-06c5-4afa-9961-e6d8bf9d25a4
Window System : Version 10.0 (Build 22631)
Fault Count: 1
Abnormal termination:
Unknown exception 0xe0434352
Current Thread: ‘MCR 0 interpreter thread’ id 21248
Register State (from fault):
RAX = 00007ffdccca63e8 RBX = 000000a3a84f3d60
RCX = 000000a3a84f29d0 RDX = 000000a3a84f3530
RSP = 000000a3a84f2150 RBP = 000000a3a84f2830
RSI = 000000a3a84f4b60 RDI = 000000a3a84f2fe0
R8 = 0000000000000081 R9 = 000000a3a84f19f0
R10 = 00007ffde438e866 R11 = 000000a3a84f29d0
R12 = 0000000000000000 R13 = 000000a3a84f22b8
R14 = 0000000000000002 R15 = 000000a3a84f3148
RIP = 00007ffde1a4fabc EFL = 00000206
CS = 0033 FS = 0053 GS = 002b
Stack Trace (from fault):
[ 0] 0x00007ffde1a4fabc C:WINDOWSSystem32KERNELBASE.dll+00391868 RaiseException+00000108
[ 1] 0x00007ffdcdc32743 C:WINDOWSSYSTEM32VCRUNTIME140_1_CLR0400.dll+00010051 _NLG_Return2+00005619
[ 2] 0x00007ffde4414896 C:WINDOWSSYSTEM32ntdll.dll+00673942 RtlCaptureContext2+00001190
[ 3] 0x00007ffdcc4ae012 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00319506 StrongNameTokenFromPublicKey+00192754
[ 4] 0x00007ffdcc4c5e56 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00417366 StrongNameTokenFromPublicKey+00290614
[ 5] 0x00007ffdcc49891b C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00231707 StrongNameTokenFromPublicKey+00104955
[ 6] 0x00007ffdcc5ee7b5 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+01632181 DllCanUnloadNowInternal+00011525
[ 7] 0x00007ffd6ce31ce7 <unknown-module>+00000000
[ 8] 0x00007ffdd90f4238 C:Program Files (x86)WoodwardMCSMotoHawk2020b_sp5.2718BlocksMainmotohawk_sfun_check_license.mexw64+00016952 mexFunction+00012856
[ 9] 0x00007ffdd90f422c C:Program Files (x86)WoodwardMCSMotoHawk2020b_sp5.2718BlocksMainmotohawk_sfun_check_license.mexw64+00016940 mexFunction+00012844
[ 10] 0x0000000000000001 <unknown-module>+00000000
This error was detected while a MEX-file was running. If the MEX-file
is not an official MathWorks function, please examine its source code
for errors. Please consult the External Interfaces Guide for information
on debugging MEX-files. How do I generate a native crash dump for MATLAB on a WINDOWS?
It’s show this: MATLAB crash file:C:UserscasperAppDataLocalTempmatlab_crash_dump.18464-1:
——————————————————————————–
Unknown exception 0xe0434352 detected at 2024-08-02 12:48:46 +0300
——————————————————————————–
Configuration:
Crash Decoding : Disabled – No sandbox or build area path
Crash Mode : continue (default)
Default Encoding : windows-1252
Deployed : false
Graphics Driver : Unknown hardware
Graphics card 1 : Intel Corporation ( 0x8086 ) Intel(R) UHD Graphics Version 27.20.100.9365 (2021-3-10)
Java Version : Java 1.8.0_202-b08 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed mode
MATLAB Architecture : win64
MATLAB Entitlement ID : 3514034
MATLAB Root : C:Program FilesMATLABR2020b
MATLAB Version : 9.9.0.2037887 (R2020b) Update 8
OpenGL : hardware
Operating System : Microsoft Windows 11 Home Single Language
Process ID : 18464
Processor ID : x86 Family 6 Model 126 Stepping 5, GenuineIntel
Session Key : 1a6fb761-06c5-4afa-9961-e6d8bf9d25a4
Window System : Version 10.0 (Build 22631)
Fault Count: 1
Abnormal termination:
Unknown exception 0xe0434352
Current Thread: ‘MCR 0 interpreter thread’ id 21248
Register State (from fault):
RAX = 00007ffdccca63e8 RBX = 000000a3a84f3d60
RCX = 000000a3a84f29d0 RDX = 000000a3a84f3530
RSP = 000000a3a84f2150 RBP = 000000a3a84f2830
RSI = 000000a3a84f4b60 RDI = 000000a3a84f2fe0
R8 = 0000000000000081 R9 = 000000a3a84f19f0
R10 = 00007ffde438e866 R11 = 000000a3a84f29d0
R12 = 0000000000000000 R13 = 000000a3a84f22b8
R14 = 0000000000000002 R15 = 000000a3a84f3148
RIP = 00007ffde1a4fabc EFL = 00000206
CS = 0033 FS = 0053 GS = 002b
Stack Trace (from fault):
[ 0] 0x00007ffde1a4fabc C:WINDOWSSystem32KERNELBASE.dll+00391868 RaiseException+00000108
[ 1] 0x00007ffdcdc32743 C:WINDOWSSYSTEM32VCRUNTIME140_1_CLR0400.dll+00010051 _NLG_Return2+00005619
[ 2] 0x00007ffde4414896 C:WINDOWSSYSTEM32ntdll.dll+00673942 RtlCaptureContext2+00001190
[ 3] 0x00007ffdcc4ae012 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00319506 StrongNameTokenFromPublicKey+00192754
[ 4] 0x00007ffdcc4c5e56 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00417366 StrongNameTokenFromPublicKey+00290614
[ 5] 0x00007ffdcc49891b C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+00231707 StrongNameTokenFromPublicKey+00104955
[ 6] 0x00007ffdcc5ee7b5 C:WindowsMicrosoft.NETFramework64v4.0.30319clr.dll+01632181 DllCanUnloadNowInternal+00011525
[ 7] 0x00007ffd6ce31ce7 <unknown-module>+00000000
[ 8] 0x00007ffdd90f4238 C:Program Files (x86)WoodwardMCSMotoHawk2020b_sp5.2718BlocksMainmotohawk_sfun_check_license.mexw64+00016952 mexFunction+00012856
[ 9] 0x00007ffdd90f422c C:Program Files (x86)WoodwardMCSMotoHawk2020b_sp5.2718BlocksMainmotohawk_sfun_check_license.mexw64+00016940 mexFunction+00012844
[ 10] 0x0000000000000001 <unknown-module>+00000000
This error was detected while a MEX-file was running. If the MEX-file
is not an official MathWorks function, please examine its source code
for errors. Please consult the External Interfaces Guide for information
on debugging MEX-files. matlab, crash MATLAB Answers — New Questions
How can I view full outputs that exceed the maximum line length in the MATLAB Command Window?
I am doing a large computation using the Symbolic Math Toolbox that is resulting in some enormous equations. When trying to view these results, I get the following message in the MATLAB Command Window:
Output truncated. Text exceeds maximum line length for Command Window display.
Is there a way to view the entire result without truncation?I am doing a large computation using the Symbolic Math Toolbox that is resulting in some enormous equations. When trying to view these results, I get the following message in the MATLAB Command Window:
Output truncated. Text exceeds maximum line length for Command Window display.
Is there a way to view the entire result without truncation? I am doing a large computation using the Symbolic Math Toolbox that is resulting in some enormous equations. When trying to view these results, I get the following message in the MATLAB Command Window:
Output truncated. Text exceeds maximum line length for Command Window display.
Is there a way to view the entire result without truncation? commandwindow, output, truncate MATLAB Answers — New Questions
Need to help escalate concern for focus OD-SPO
For several weeks, both my OneDrive and SharePoint storage reported incorrect values. In mid-to-late June, I deleted both Primary and Secondary recycle bins but the files came magically back twice.
When I finally managed to have someone look at the concern through Quick Assist, I have also deleted the files and they never went away. The MS Support Engineer said they’re doing “advanced diagnostics”. What I remember a day before I had an issue with OneDrive and SharePoint is that Azure or Microsoft 365 had issues. When I transferred files to SharePoint from OneDrive, the storage utilization never changed.
If I had to provide feedback about MS Support, they stood me up for a whole week at one point and, despite stating email in the communication preference because my vocal cords are damaged, they keep calling then email just to tell me they can’t reach me. New agents assigned to the ticket almost never read ticket details. Just 2 people.
Any help from Microsoft to look into this would be appreciated as I have emailed escalation personnel from the BPO but nobody replied since earlier this morning. It’s close to 4PM Eastern now.
FYI Tracking ID 2406220030001049. Ticket has been open since mid-June. FYI @Russell Read
Regards,
m365bizsubs001
MS365 Business Standard Subscriber
For several weeks, both my OneDrive and SharePoint storage reported incorrect values. In mid-to-late June, I deleted both Primary and Secondary recycle bins but the files came magically back twice.When I finally managed to have someone look at the concern through Quick Assist, I have also deleted the files and they never went away. The MS Support Engineer said they’re doing “advanced diagnostics”. What I remember a day before I had an issue with OneDrive and SharePoint is that Azure or Microsoft 365 had issues. When I transferred files to SharePoint from OneDrive, the storage utilization never changed.If I had to provide feedback about MS Support, they stood me up for a whole week at one point and, despite stating email in the communication preference because my vocal cords are damaged, they keep calling then email just to tell me they can’t reach me. New agents assigned to the ticket almost never read ticket details. Just 2 people.Any help from Microsoft to look into this would be appreciated as I have emailed escalation personnel from the BPO but nobody replied since earlier this morning. It’s close to 4PM Eastern now.FYI Tracking ID 2406220030001049. Ticket has been open since mid-June. FYI @Russell Read Regards,m365bizsubs001MS365 Business Standard Subscriber Read More
Inventory Qty Update Formula
I have a workbook with 3 tabs – Inventory Sheet, Mat Log, Cost Tracking.
The cost tracking sheet had the original inventory amount that we need to start with (Column J).
On the Mat Log sheet, when an item is removed or added to inventory, the person will enter the date in column A, the Mat. Code in Column B – and that will populate the name in Column C. Column F is the amount they are taking out (negative number) or putting into inventory (positive number). Here is where the “I need help” comes in. On the inventory sheet, I need the quantity associated the product code to always be updated based on what happens on the Mat Log sheet.
I have a workbook with 3 tabs – Inventory Sheet, Mat Log, Cost Tracking. The cost tracking sheet had the original inventory amount that we need to start with (Column J).On the Mat Log sheet, when an item is removed or added to inventory, the person will enter the date in column A, the Mat. Code in Column B – and that will populate the name in Column C. Column F is the amount they are taking out (negative number) or putting into inventory (positive number). Here is where the “I need help” comes in. On the inventory sheet, I need the quantity associated the product code to always be updated based on what happens on the Mat Log sheet. Read More
Color Code Emails: Use Conditional Formatting or Assign Categories?
Are you unsure which feature to use for color-coding your emails? Should you use conditional formatting or assign categories?
In this blog post, Color Code Emails: Conditional formatting or Categories » TRACCreations4E, I discuss the differences between the two.
Which do you prefer?
Are you unsure which feature to use for color-coding your emails? Should you use conditional formatting or assign categories?
In this blog post, Color Code Emails: Conditional formatting or Categories » TRACCreations4E, I discuss the differences between the two.
Which do you prefer?
Upcoming Task on 2016 (active)
Hi All,
How do I display more than 50 task, I went into Advanced options ad it say I only have 50 lines but it does say something about filters. I need to display like 150 lines for production scheduling.
Thank you,
Tony
Hi All,How do I display more than 50 task, I went into Advanced options ad it say I only have 50 lines but it does say something about filters. I need to display like 150 lines for production scheduling. Thank you,Tony Read More