Category: News
Desktop Has Stopped Working Issue: What steps can I take to fix it?
I keep encountering a Desktop has stopped working error on my computer. This issue disrupts my workflow, and I’m unsure how to resolve it. Can you provide troubleshooting solutions to fix this problem?
I keep encountering a Desktop has stopped working error on my computer. This issue disrupts my workflow, and I’m unsure how to resolve it. Can you provide troubleshooting solutions to fix this problem? Read More
Calcul d’un délai entre deux dates sur LITS, comment enlever une valeur négative qui apparait ?
Bonjour,
Lorsque je calcule le délai entre deux dates sur LISTS et qu’il manque une donnée, cela me donne une valeur négative dans les -45490.
Je pense qu’il faut développer une formule sur JSON
J’aimerai mettre rien du tout quand il manque une donnée
Merci de votre aide
Bonjour, Lorsque je calcule le délai entre deux dates sur LISTS et qu’il manque une donnée, cela me donne une valeur négative dans les -45490. Je pense qu’il faut développer une formule sur JSON J’aimerai mettre rien du tout quand il manque une donnée Merci de votre aide Read More
Enable Copilot in Word, Excel and Power Point
I have a Microsoft account for work with an Office E3 license. I want to activate copilot in Word, Excel and Power Point but I can’t. I have followed the following link How to find and enable missing Copilot button in Microsoft 365 apps – Microsoft Support but it still doesn’t work. Does anyone know how to solve this problem?
I have a Microsoft account for work with an Office E3 license. I want to activate copilot in Word, Excel and Power Point but I can’t. I have followed the following link How to find and enable missing Copilot button in Microsoft 365 apps – Microsoft Support but it still doesn’t work. Does anyone know how to solve this problem? Read More
How to Plot a Fourier Series?
Hi,
I was given a half range expansion function f(x) = 0, 0<x<2 and f(x) = 1, <2<x<4.
I was asked to solve for the Fourier cosine series and Fourier sine series and then plot each.
I solved by hand:
Fourier Cosine Series:
a0 = 1/2
an = -2/(n*pi)*sin((n*pi)/2)
f(x) = 1/2 + sum(an*cos((n*pi*x)/4)) from n =1 to infinity
Fourier Sine Series:
bn = [2/(n*pi)]*[(-1)^(n+1) + cos((n*pi)/2)]
f(x) = sum(bn*sin((n*pi*x)/4))
I’m fairly new to Matlab and very unexperienced, where I’m having dificulty is plotting these functions against x, say x = [-24 24] and n=1:1:50 or until square waves appear. I gained some experience plotting their partial sums using fplot, but that approach does not appear to work here. It isn’t feasible to plot the 50th partial sum. I’ve seen more arrayfun usage online, but I do not understand it whatsoever.
Any help and explanation would be greatly appreciated. Thanks in advance.Hi,
I was given a half range expansion function f(x) = 0, 0<x<2 and f(x) = 1, <2<x<4.
I was asked to solve for the Fourier cosine series and Fourier sine series and then plot each.
I solved by hand:
Fourier Cosine Series:
a0 = 1/2
an = -2/(n*pi)*sin((n*pi)/2)
f(x) = 1/2 + sum(an*cos((n*pi*x)/4)) from n =1 to infinity
Fourier Sine Series:
bn = [2/(n*pi)]*[(-1)^(n+1) + cos((n*pi)/2)]
f(x) = sum(bn*sin((n*pi*x)/4))
I’m fairly new to Matlab and very unexperienced, where I’m having dificulty is plotting these functions against x, say x = [-24 24] and n=1:1:50 or until square waves appear. I gained some experience plotting their partial sums using fplot, but that approach does not appear to work here. It isn’t feasible to plot the 50th partial sum. I’ve seen more arrayfun usage online, but I do not understand it whatsoever.
Any help and explanation would be greatly appreciated. Thanks in advance. Hi,
I was given a half range expansion function f(x) = 0, 0<x<2 and f(x) = 1, <2<x<4.
I was asked to solve for the Fourier cosine series and Fourier sine series and then plot each.
I solved by hand:
Fourier Cosine Series:
a0 = 1/2
an = -2/(n*pi)*sin((n*pi)/2)
f(x) = 1/2 + sum(an*cos((n*pi*x)/4)) from n =1 to infinity
Fourier Sine Series:
bn = [2/(n*pi)]*[(-1)^(n+1) + cos((n*pi)/2)]
f(x) = sum(bn*sin((n*pi*x)/4))
I’m fairly new to Matlab and very unexperienced, where I’m having dificulty is plotting these functions against x, say x = [-24 24] and n=1:1:50 or until square waves appear. I gained some experience plotting their partial sums using fplot, but that approach does not appear to work here. It isn’t feasible to plot the 50th partial sum. I’ve seen more arrayfun usage online, but I do not understand it whatsoever.
Any help and explanation would be greatly appreciated. Thanks in advance. arrays, function, time series MATLAB Answers — New Questions
Error accessing camera connected to NVIDIA Jetson AGX ORIN 64 Gb development kit
I am trying to access camera connected to Nvidia Jeston AGX orin. The camera model is: See3CAM_CU135M_H03R1 (econsystem usb 3). The camera is working properly in Nvidia Jeston. But when i am trying to use it on matlab i am having the following output and error:
Checking for CUDA availability on the Target…
Checking for ‘nvcc’ in the target system path…
Checking for cuDNN library availability on the Target…
Checking for TensorRT library availability on the Target…
Checking for prerequisite libraries is complete.
Gathering hardware details…
Checking for third-party library availability on the Target…
Gathering hardware details is complete.
Board name : NVIDIA Jetson AGX Orin Developer Kit
CUDA Version : 12.2
cuDNN Version : 8.9
TensorRT Version : 8.6
GStreamer Version : 1.20.3
V4L2 Version : 1.22.1-2build1
SDL Version : 1.2
OpenCV Version : 4.8.0
Available Webcams : See3CAM_CU135M_H03R1
Available GPUs : Orin
Available Digital Pins : 7 11 12 13 15 16 18 19 21 22 23 24 26 29 31 32 33 35 36 37 38 40
Available Webcams:
1: See3CAM_CU135M_H03R1
Details of Webcam 1: See3CAM_CU135M_H03R1
Error initializing camera See3CAM_CU135M_H03R1: Gstreamer pipeline error. Make sure that the camera is not opened.
The code which i used is given below:
clear all
close all
clc
% Connect to the Jetson
hwJetson = jetson(‘10.134.169.67’, ‘JetsonCam’, ‘ws132’);
% List the available webcams
webcams = hwJetson.WebcamList;
% Display the list of webcams
disp(‘Available Webcams:’);
for i = 1:length(webcams)
fprintf(‘%d: %sn’, i, webcams{i});
end
% Get detailed information about each webcam
for i = 1:length(webcams)
camName = webcams{i};
fprintf(‘nDetails of Webcam %d: %sn’, i, camName);
% Try to initialize the camera with a specific resolution and frame rate
try
% Initialize the camera with the default resolution and frame rate
cam = camera(hwJetson, camName, [1280 720]); % Example resolution and frame rate
% Display video modes supported by the camera
videoModes = cam.AvailableResolutions;
% Print available resolutions
fprintf(‘Available Resolutions:n’);
for j = 1:length(videoModes)
fprintf(‘Resolution %d: %sn’, j, videoModes{j});
end
% Clean up
clear cam;
catch ME
% Display an error message if the camera initialization fails
fprintf(‘Error initializing camera %s: %sn’, camName, ME.message);
end
endI am trying to access camera connected to Nvidia Jeston AGX orin. The camera model is: See3CAM_CU135M_H03R1 (econsystem usb 3). The camera is working properly in Nvidia Jeston. But when i am trying to use it on matlab i am having the following output and error:
Checking for CUDA availability on the Target…
Checking for ‘nvcc’ in the target system path…
Checking for cuDNN library availability on the Target…
Checking for TensorRT library availability on the Target…
Checking for prerequisite libraries is complete.
Gathering hardware details…
Checking for third-party library availability on the Target…
Gathering hardware details is complete.
Board name : NVIDIA Jetson AGX Orin Developer Kit
CUDA Version : 12.2
cuDNN Version : 8.9
TensorRT Version : 8.6
GStreamer Version : 1.20.3
V4L2 Version : 1.22.1-2build1
SDL Version : 1.2
OpenCV Version : 4.8.0
Available Webcams : See3CAM_CU135M_H03R1
Available GPUs : Orin
Available Digital Pins : 7 11 12 13 15 16 18 19 21 22 23 24 26 29 31 32 33 35 36 37 38 40
Available Webcams:
1: See3CAM_CU135M_H03R1
Details of Webcam 1: See3CAM_CU135M_H03R1
Error initializing camera See3CAM_CU135M_H03R1: Gstreamer pipeline error. Make sure that the camera is not opened.
The code which i used is given below:
clear all
close all
clc
% Connect to the Jetson
hwJetson = jetson(‘10.134.169.67’, ‘JetsonCam’, ‘ws132’);
% List the available webcams
webcams = hwJetson.WebcamList;
% Display the list of webcams
disp(‘Available Webcams:’);
for i = 1:length(webcams)
fprintf(‘%d: %sn’, i, webcams{i});
end
% Get detailed information about each webcam
for i = 1:length(webcams)
camName = webcams{i};
fprintf(‘nDetails of Webcam %d: %sn’, i, camName);
% Try to initialize the camera with a specific resolution and frame rate
try
% Initialize the camera with the default resolution and frame rate
cam = camera(hwJetson, camName, [1280 720]); % Example resolution and frame rate
% Display video modes supported by the camera
videoModes = cam.AvailableResolutions;
% Print available resolutions
fprintf(‘Available Resolutions:n’);
for j = 1:length(videoModes)
fprintf(‘Resolution %d: %sn’, j, videoModes{j});
end
% Clean up
clear cam;
catch ME
% Display an error message if the camera initialization fails
fprintf(‘Error initializing camera %s: %sn’, camName, ME.message);
end
end I am trying to access camera connected to Nvidia Jeston AGX orin. The camera model is: See3CAM_CU135M_H03R1 (econsystem usb 3). The camera is working properly in Nvidia Jeston. But when i am trying to use it on matlab i am having the following output and error:
Checking for CUDA availability on the Target…
Checking for ‘nvcc’ in the target system path…
Checking for cuDNN library availability on the Target…
Checking for TensorRT library availability on the Target…
Checking for prerequisite libraries is complete.
Gathering hardware details…
Checking for third-party library availability on the Target…
Gathering hardware details is complete.
Board name : NVIDIA Jetson AGX Orin Developer Kit
CUDA Version : 12.2
cuDNN Version : 8.9
TensorRT Version : 8.6
GStreamer Version : 1.20.3
V4L2 Version : 1.22.1-2build1
SDL Version : 1.2
OpenCV Version : 4.8.0
Available Webcams : See3CAM_CU135M_H03R1
Available GPUs : Orin
Available Digital Pins : 7 11 12 13 15 16 18 19 21 22 23 24 26 29 31 32 33 35 36 37 38 40
Available Webcams:
1: See3CAM_CU135M_H03R1
Details of Webcam 1: See3CAM_CU135M_H03R1
Error initializing camera See3CAM_CU135M_H03R1: Gstreamer pipeline error. Make sure that the camera is not opened.
The code which i used is given below:
clear all
close all
clc
% Connect to the Jetson
hwJetson = jetson(‘10.134.169.67’, ‘JetsonCam’, ‘ws132’);
% List the available webcams
webcams = hwJetson.WebcamList;
% Display the list of webcams
disp(‘Available Webcams:’);
for i = 1:length(webcams)
fprintf(‘%d: %sn’, i, webcams{i});
end
% Get detailed information about each webcam
for i = 1:length(webcams)
camName = webcams{i};
fprintf(‘nDetails of Webcam %d: %sn’, i, camName);
% Try to initialize the camera with a specific resolution and frame rate
try
% Initialize the camera with the default resolution and frame rate
cam = camera(hwJetson, camName, [1280 720]); % Example resolution and frame rate
% Display video modes supported by the camera
videoModes = cam.AvailableResolutions;
% Print available resolutions
fprintf(‘Available Resolutions:n’);
for j = 1:length(videoModes)
fprintf(‘Resolution %d: %sn’, j, videoModes{j});
end
% Clean up
clear cam;
catch ME
% Display an error message if the camera initialization fails
fprintf(‘Error initializing camera %s: %sn’, camName, ME.message);
end
end nvidia jetson, camera, image aquisition MATLAB Answers — New Questions
Unrecognized function or variable ‘mexUnwrap’.
I get this error: “Unrecognized function or variable ‘mexUnwrap’” when I run my code. However, the folder containing this C++ file (mexUnwrap.c) is in my path. It also contains mexUnwrap.mexa64, mexUnwrap.mexmaci64, mexUnwrap.mexw64. Do you have any suggestions for solving this problem?I get this error: “Unrecognized function or variable ‘mexUnwrap’” when I run my code. However, the folder containing this C++ file (mexUnwrap.c) is in my path. It also contains mexUnwrap.mexa64, mexUnwrap.mexmaci64, mexUnwrap.mexw64. Do you have any suggestions for solving this problem? I get this error: “Unrecognized function or variable ‘mexUnwrap’” when I run my code. However, the folder containing this C++ file (mexUnwrap.c) is in my path. It also contains mexUnwrap.mexa64, mexUnwrap.mexmaci64, mexUnwrap.mexw64. Do you have any suggestions for solving this problem? error, unrecognized c++ function MATLAB Answers — New Questions
Incorrect Detected as Malware
Dear team,
Our apps have been detected incorrectly as malware and we’ve submitted for screening somehow still flagged as malware.
We tried to appeal and looking for someone to help us how can we remove this flag from defender.
Dear team, Our apps have been detected incorrectly as malware and we’ve submitted for screening somehow still flagged as malware. We tried to appeal and looking for someone to help us how can we remove this flag from defender. Read More
How Do I Fix Cannot Open Company File In Desktop? [Urgent Help Required]
I’m unable to open our company file. I’ve checked the file path, permissions, and restarted the system, but the issue persists. Could you please help me fix this error or guide me on restoring the file from backup?
I’m unable to open our company file. I’ve checked the file path, permissions, and restarted the system, but the issue persists. Could you please help me fix this error or guide me on restoring the file from backup? Read More
What Causes the Unrecoverable Error in Desktop Enterprise Software?
I’m encountering an unrecoverable error while using my desktop enterprise software. What are the common causes of this error, and how can I fix it? Any tips or troubleshooting steps would be greatly appreciated!
I’m encountering an unrecoverable error while using my desktop enterprise software. What are the common causes of this error, and how can I fix it? Any tips or troubleshooting steps would be greatly appreciated! Read More
What to Do If Enterprise Pay-roll Update Not Working?
I’m facing an issue where the enterprise pay-roll update is not working. Can anyone provide guidance on how to troubleshoot and resolve this problem? Any tips or solutions would be greatly appreciated!
I’m facing an issue where the enterprise pay-roll update is not working. Can anyone provide guidance on how to troubleshoot and resolve this problem? Any tips or solutions would be greatly appreciated! Read More
The best way to convert heic to pdf on Windows 11 for free?
All of photos taken on my iPhone are saved in .heic image format. When I copied them to my Windows 11 PC, they are not available for open with the Photos app. I need to convert many of them to PDF format so I can share with others.
I’ve noticed that HEIC isn’t as widely supported as other image formats, so I’m hoping to find a reliable for converting HEIC to PDF on Windows PC that can handle these conversions smoothly without compromising on image quality.
If you know of any software or online services that work well for converting HEIC to PDF on Windows 11, I’d love to hear your recommendations. It would be great if the tool offers options to customize the layout of the images within the PDF, such as arranging multiple images per page or adjusting the margins and orientation.
Thanks
All of photos taken on my iPhone are saved in .heic image format. When I copied them to my Windows 11 PC, they are not available for open with the Photos app. I need to convert many of them to PDF format so I can share with others. I’ve noticed that HEIC isn’t as widely supported as other image formats, so I’m hoping to find a reliable for converting HEIC to PDF on Windows PC that can handle these conversions smoothly without compromising on image quality. If you know of any software or online services that work well for converting HEIC to PDF on Windows 11, I’d love to hear your recommendations. It would be great if the tool offers options to customize the layout of the images within the PDF, such as arranging multiple images per page or adjusting the margins and orientation. Thanks Read More
Not working DFCI
Hello, Guys
I am using the DFCI function in the Intune.
In some devices, the log is printed as below and DFCI works properly.
However, in other devices, the log is printed as below and DFCI does not work at all.
When it says “License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: false”, what should be checked?
Please give me some advice on this issue.
0. Log file Name
DiagnosticLogCSP_Collector_DeviceEnrollment_2024_7_29_14_48_2.etl
1. Log of successful devices
Microsoft-WindowsPhone-ConfigManager2 5056 6812 2024/06/19-11:03:21.059 0 License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: true, returns: (0)
Microsoft-WindowsPhone-ConfigManager2 5056 6812 2024/06/19-11:03:21.059 0 CSP access: URI: (./Vendor/MSFT/Uefi/DeviceIdentifier), IsAllowed: true, Result: (0)
2. Failed device Logs
Microsoft-WindowsPhone-ConfigManager2 2452 3288 2024/07/26-14:07:55.377 0 License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: false, returns: (0)
Microsoft-WindowsPhone-ConfigManager2 2452 3288 2024/07/26-14:07:55.377 0 CSP access: URI: (./Vendor/MSFT/Uefi/DeviceIdentifier), IsAllowed: false, Result: (86000025)
Thanks a lot.
Hello, Guys I am using the DFCI function in the Intune. In some devices, the log is printed as below and DFCI works properly.However, in other devices, the log is printed as below and DFCI does not work at all. When it says “License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: false”, what should be checked?Please give me some advice on this issue.0. Log file NameDiagnosticLogCSP_Collector_DeviceEnrollment_2024_7_29_14_48_2.etl 1. Log of successful devicesMicrosoft-WindowsPhone-ConfigManager2 5056 6812 2024/06/19-11:03:21.059 0 License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: true, returns: (0)Microsoft-WindowsPhone-ConfigManager2 5056 6812 2024/06/19-11:03:21.059 0 CSP access: URI: (./Vendor/MSFT/Uefi/DeviceIdentifier), IsAllowed: true, Result: (0) 2. Failed device LogsMicrosoft-WindowsPhone-ConfigManager2 2452 3288 2024/07/26-14:07:55.377 0 License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: false, returns: (0)Microsoft-WindowsPhone-ConfigManager2 2452 3288 2024/07/26-14:07:55.377 0 CSP access: URI: (./Vendor/MSFT/Uefi/DeviceIdentifier), IsAllowed: false, Result: (86000025) Thanks a lot. Read More
Problems synching Sharepoint Libraries
Hello,
We are currently experiencing issues with synchronizing our SharePoint libraries. The synchronization continues to work without problems on all PCs that have been connected for a longer time. However, when we try to synchronize SharePoint libraries on new devices, problems occur. The library syncs, and OneDrive works until the system is restarted. After every restart, OneDrive starts to resynchronize the entire library. Since there are many files, this takes a while and significantly hinders our work. Does anyone have any idea what could be causing this? The OneDrive versions on both the already synchronized devices and the new devices are the same.
Best regards
Hello,We are currently experiencing issues with synchronizing our SharePoint libraries. The synchronization continues to work without problems on all PCs that have been connected for a longer time. However, when we try to synchronize SharePoint libraries on new devices, problems occur. The library syncs, and OneDrive works until the system is restarted. After every restart, OneDrive starts to resynchronize the entire library. Since there are many files, this takes a while and significantly hinders our work. Does anyone have any idea what could be causing this? The OneDrive versions on both the already synchronized devices and the new devices are the same.Best regards Read More
Warning: Results may be inaccurate because of an ill-conditioned Jacobian whose reciprocal condition number is 2.03573e-39
I’m trying to solve an boundary value problem with eigenvalues, following the article ( https://doi.org/10.1063/5.0155331 )
where and At are certain numbers and Q() is a known function, erf function in this case.
is the unknown function and the eigenvalue.
The boundary condition is , so I specified
For small alphas my code with bvp5c works well.
However for large alphas, my solution deviates from the result in the article, and I’m encountering messages like
Warning: Results may be inaccurate because of an ill-conditioned Jacobian whose reciprocal condition number is 2.03573e-39
I guess the boundary values may be too small and tried to scale my boundary values with C*exp(-3/alpha) but the problem remains.
How can I solve the problem? Fig.1 in https://doi.org/10.1063/5.0155331 can be referred as a correct solution to this problem. My solution looks similar to it but deviates in asymptotic values.
eigenvalues0999 = zeros(1, 30);
global alpha;
global At;
options = bvpset(‘RelTol’,1e-5,’AbsTol’,1e-5);
At = 0.999;
for i=1:30
alpha=1/i;
Psi1 = 1;
solinit = bvpinit(linspace(-3,6,30000),@mat4init,Psi1);
sol = bvp5c(@mat4ode, @mat4bc, solinit,options);
eigenvalues0999(1,i) = sol.parameters;
end
figure(Color="white");
plot(eigenvalues0999);
grid on;
legend(‘0′,’0.243′,’0.5′,’0.843′,’0.999′,’FontSize’, 14)
xlabel(‘alpha^{-1}’,’FontSize’, 14);
ylabel(‘Psi’,’FontSize’, 14);
set(gca, ‘FontSize’, 14);
function dydx = mat4ode(x,y,Psi1) % equation being solved
global alpha;
global At;
dydx = [y(2)
(-alpha^2*At*2/sqrt(pi)*exp(-x.^2)*y(2)+(1+At*erf(x)-alpha*Psi1*2/sqrt(pi)*exp(-x.^2))*y(1))/(alpha^2*(1+At*erf(x)))];
end
function res = mat4bc(ya,yb,Psi1) % boundary conditions
global alpha;
res = [ya(2)-1/alpha*exp(-3/alpha)
abs(yb(1))+abs(yb(2))
%yb(2)
ya(1)-exp(-3/alpha)];
end
function yinit = mat4init(x) % initial guess function
global alpha;
yinit = [exp(-abs(x)/alpha)
-sign(x)*1/alpha*exp(-abs(x)/alpha)];
endI’m trying to solve an boundary value problem with eigenvalues, following the article ( https://doi.org/10.1063/5.0155331 )
where and At are certain numbers and Q() is a known function, erf function in this case.
is the unknown function and the eigenvalue.
The boundary condition is , so I specified
For small alphas my code with bvp5c works well.
However for large alphas, my solution deviates from the result in the article, and I’m encountering messages like
Warning: Results may be inaccurate because of an ill-conditioned Jacobian whose reciprocal condition number is 2.03573e-39
I guess the boundary values may be too small and tried to scale my boundary values with C*exp(-3/alpha) but the problem remains.
How can I solve the problem? Fig.1 in https://doi.org/10.1063/5.0155331 can be referred as a correct solution to this problem. My solution looks similar to it but deviates in asymptotic values.
eigenvalues0999 = zeros(1, 30);
global alpha;
global At;
options = bvpset(‘RelTol’,1e-5,’AbsTol’,1e-5);
At = 0.999;
for i=1:30
alpha=1/i;
Psi1 = 1;
solinit = bvpinit(linspace(-3,6,30000),@mat4init,Psi1);
sol = bvp5c(@mat4ode, @mat4bc, solinit,options);
eigenvalues0999(1,i) = sol.parameters;
end
figure(Color="white");
plot(eigenvalues0999);
grid on;
legend(‘0′,’0.243′,’0.5′,’0.843′,’0.999′,’FontSize’, 14)
xlabel(‘alpha^{-1}’,’FontSize’, 14);
ylabel(‘Psi’,’FontSize’, 14);
set(gca, ‘FontSize’, 14);
function dydx = mat4ode(x,y,Psi1) % equation being solved
global alpha;
global At;
dydx = [y(2)
(-alpha^2*At*2/sqrt(pi)*exp(-x.^2)*y(2)+(1+At*erf(x)-alpha*Psi1*2/sqrt(pi)*exp(-x.^2))*y(1))/(alpha^2*(1+At*erf(x)))];
end
function res = mat4bc(ya,yb,Psi1) % boundary conditions
global alpha;
res = [ya(2)-1/alpha*exp(-3/alpha)
abs(yb(1))+abs(yb(2))
%yb(2)
ya(1)-exp(-3/alpha)];
end
function yinit = mat4init(x) % initial guess function
global alpha;
yinit = [exp(-abs(x)/alpha)
-sign(x)*1/alpha*exp(-abs(x)/alpha)];
end I’m trying to solve an boundary value problem with eigenvalues, following the article ( https://doi.org/10.1063/5.0155331 )
where and At are certain numbers and Q() is a known function, erf function in this case.
is the unknown function and the eigenvalue.
The boundary condition is , so I specified
For small alphas my code with bvp5c works well.
However for large alphas, my solution deviates from the result in the article, and I’m encountering messages like
Warning: Results may be inaccurate because of an ill-conditioned Jacobian whose reciprocal condition number is 2.03573e-39
I guess the boundary values may be too small and tried to scale my boundary values with C*exp(-3/alpha) but the problem remains.
How can I solve the problem? Fig.1 in https://doi.org/10.1063/5.0155331 can be referred as a correct solution to this problem. My solution looks similar to it but deviates in asymptotic values.
eigenvalues0999 = zeros(1, 30);
global alpha;
global At;
options = bvpset(‘RelTol’,1e-5,’AbsTol’,1e-5);
At = 0.999;
for i=1:30
alpha=1/i;
Psi1 = 1;
solinit = bvpinit(linspace(-3,6,30000),@mat4init,Psi1);
sol = bvp5c(@mat4ode, @mat4bc, solinit,options);
eigenvalues0999(1,i) = sol.parameters;
end
figure(Color="white");
plot(eigenvalues0999);
grid on;
legend(‘0′,’0.243′,’0.5′,’0.843′,’0.999′,’FontSize’, 14)
xlabel(‘alpha^{-1}’,’FontSize’, 14);
ylabel(‘Psi’,’FontSize’, 14);
set(gca, ‘FontSize’, 14);
function dydx = mat4ode(x,y,Psi1) % equation being solved
global alpha;
global At;
dydx = [y(2)
(-alpha^2*At*2/sqrt(pi)*exp(-x.^2)*y(2)+(1+At*erf(x)-alpha*Psi1*2/sqrt(pi)*exp(-x.^2))*y(1))/(alpha^2*(1+At*erf(x)))];
end
function res = mat4bc(ya,yb,Psi1) % boundary conditions
global alpha;
res = [ya(2)-1/alpha*exp(-3/alpha)
abs(yb(1))+abs(yb(2))
%yb(2)
ya(1)-exp(-3/alpha)];
end
function yinit = mat4init(x) % initial guess function
global alpha;
yinit = [exp(-abs(x)/alpha)
-sign(x)*1/alpha*exp(-abs(x)/alpha)];
end bvp5c, solve MATLAB Answers — New Questions
I’m curious about the process of creating HDMap binary files in the example ‘Building Scenes from Custom Data Using RoadRunner HD Maps’.
I’m working on a scene-building example from custom data using RoadRunner HD maps.
There’s a problem that hasn’t been solved, so I’m asking
I’m curious about the process of creating HDMap binary files in the example ‘Building Scenes from Custom Data Using RoadRunner HD Maps’.
I would like to know in detail what files apply the c++ code provided in the example, and how to create a loader HDMap binary file from custom data.I’m working on a scene-building example from custom data using RoadRunner HD maps.
There’s a problem that hasn’t been solved, so I’m asking
I’m curious about the process of creating HDMap binary files in the example ‘Building Scenes from Custom Data Using RoadRunner HD Maps’.
I would like to know in detail what files apply the c++ code provided in the example, and how to create a loader HDMap binary file from custom data. I’m working on a scene-building example from custom data using RoadRunner HD maps.
There’s a problem that hasn’t been solved, so I’m asking
I’m curious about the process of creating HDMap binary files in the example ‘Building Scenes from Custom Data Using RoadRunner HD Maps’.
I would like to know in detail what files apply the c++ code provided in the example, and how to create a loader HDMap binary file from custom data. roadrunner, hdmap, binary, c++ MATLAB Answers — New Questions
MATLAB Onramp 14.1 Project- Stellar Motion Task 7
Modify the Task 2 & 7 section of the script so that it performs the red shift calculation on the second star in spectra, not the sixth.
I have changed s to the second column (s= spectra(:,2)), and that is right.
How do I get the correct values of lambdaHa and speed?Modify the Task 2 & 7 section of the script so that it performs the red shift calculation on the second star in spectra, not the sixth.
I have changed s to the second column (s= spectra(:,2)), and that is right.
How do I get the correct values of lambdaHa and speed? Modify the Task 2 & 7 section of the script so that it performs the red shift calculation on the second star in spectra, not the sixth.
I have changed s to the second column (s= spectra(:,2)), and that is right.
How do I get the correct values of lambdaHa and speed? onramp, stellar motion 14.1, inramp, stellar motion MATLAB Answers — New Questions
REGISTER TODAY! New FY25 Level Up CSP Bootcamps | August and September 2024
We are excited to announce our new FY25 Level Up CSP Bootcamps, that are built to help CSP partners grow sales and technical capabilities and accelerate new customer acquisition, upsell and cross sell. Join us for the upcoming Microsoft 365 and Copilot bootcamps to get ready to acquire, upsell and expand with M365 Premium SKUs, Copilot and Copilot Studio.
NEW! We will be offering voiceover and subtitles for ten languages to support our global CSP partners.
Level Up CSP Sales Bootcamp
1-day Sales Bootcamp: Get ready to go to market and sell Microsoft 365 and Copilot
Americas/EMEA region: August 28 | 8:00 AM – 12:00 PM, Pacific Time
APAC region: September 4 | 5:00 PM – 9:00 PM, Pacific Time
Level Up CSP Pre and Post Sales Technical Bootcamp
2-day Technical Bootcamp: Secure customers with Premium SKUs, deploy Copilot and extend with Copilot Studio
Americas/EMEA region: September 11 & 12 | 7:00 AM – 11:00 AM, Pacific Time
APAC region: September 18 & 19 | 5:00 PM – 9:00 PM, Pacific Time
We are excited to announce our new FY25 Level Up CSP Bootcamps, that are built to help CSP partners grow sales and technical capabilities and accelerate new customer acquisition, upsell and cross sell. Join us for the upcoming Microsoft 365 and Copilot bootcamps to get ready to acquire, upsell and expand with M365 Premium SKUs, Copilot and Copilot Studio.
NEW! We will be offering voiceover and subtitles for ten languages to support our global CSP partners.
REGISTER TODAY!
Level Up CSP Sales Bootcamp
1-day Sales Bootcamp: Get ready to go to market and sell Microsoft 365 and Copilot
Americas/EMEA region: August 28 | 8:00 AM – 12:00 PM, Pacific Time
APAC region: September 4 | 5:00 PM – 9:00 PM, Pacific Time
Level Up CSP Pre and Post Sales Technical Bootcamp
2-day Technical Bootcamp: Secure customers with Premium SKUs, deploy Copilot and extend with Copilot Studio
Americas/EMEA region: September 11 & 12 | 7:00 AM – 11:00 AM, Pacific Time
APAC region: September 18 & 19 | 5:00 PM – 9:00 PM, Pacific Time Read More
conditional formula excel
Hi
I have a question and need help find 3 items
1) How use conditional formula and highlight the month based on the DOB
2) How to use conditional formula to highlight in the month turn first 60 based on the birth month (eg the last row should highlight Jan – 60)
Thank you
Birth dateDec 23Jan 24Feb 24Mar 24Apr 24May 24Jun 24Jul 24Aug 24Sep 24Oct 24Nov 24Dec 243/23/1948757575767676767676767676762/5/1956676768686868686868686868681/31/196459606060606060606060606060
Hi I have a question and need help find 3 items1) How use conditional formula and highlight the month based on the DOB2) How to use conditional formula to highlight in the month turn first 60 based on the birth month (eg the last row should highlight Jan – 60) Thank youBirth dateDec 23Jan 24Feb 24Mar 24Apr 24May 24Jun 24Jul 24Aug 24Sep 24Oct 24Nov 24Dec 243/23/1948757575767676767676767676762/5/1956676768686868686868686868681/31/196459606060606060606060606060 Read More
How to Batch convert ape to mp3 that retains good quality?
I recently downloaded hundreds of music files in APE format. I’m aware that APE is a lossless audio format, which means it preserves the original quality of the audio, but it’s not widely supported by many devices and media players. Therefore, I need to convert APE to MP3, a more universally compatible format.
Could anyone recommend a reliable method for batch converting APE to MP3 on a Windows PC or Mac? Ideally, I’d like something that can handle large batches efficiently without compromising too much on audio quality.
I recently downloaded hundreds of music files in APE format. I’m aware that APE is a lossless audio format, which means it preserves the original quality of the audio, but it’s not widely supported by many devices and media players. Therefore, I need to convert APE to MP3, a more universally compatible format. Could anyone recommend a reliable method for batch converting APE to MP3 on a Windows PC or Mac? Ideally, I’d like something that can handle large batches efficiently without compromising too much on audio quality. Read More
Active Directory Users Remapping in DevOps Server 2022
Hi All,
We had a ransomware attack on our AD server and DevOps server. Luckily I had a backup of the DevOps server which I restored back after formating both the servers. I did not change anything after format hostname of DevOps & AD server, IP address, the domain name , created same user names in active directory, everything I have kept identical.
After installation and configuring DevOps AD users are not able to log in to DevOps. It keeps asking for credentials whenever a user tries to connect. Is there any option in TFS to remap active directory users? Please let me know. There are so many project created in TFS and its impossible for us to go and add AD users again on each project.
Regards
Imran Shaikh
Hi All,We had a ransomware attack on our AD server and DevOps server. Luckily I had a backup of the DevOps server which I restored back after formating both the servers. I did not change anything after format hostname of DevOps & AD server, IP address, the domain name , created same user names in active directory, everything I have kept identical.After installation and configuring DevOps AD users are not able to log in to DevOps. It keeps asking for credentials whenever a user tries to connect. Is there any option in TFS to remap active directory users? Please let me know. There are so many project created in TFS and its impossible for us to go and add AD users again on each project. RegardsImran Shaikh Read More