Month: June 2024
My house WiFi is slow on my PC but fast in other devices
Hello, i’m using Windows 11 23H2 and i have a problem with my WiFi, on my PC my WiFi is slow, even if i use Google DNS or clear the cache of my WiFi and DNS. But in other devices like my phone, my wifi goes fast. Is there any solution for this? please let me know.
Hello, i’m using Windows 11 23H2 and i have a problem with my WiFi, on my PC my WiFi is slow, even if i use Google DNS or clear the cache of my WiFi and DNS. But in other devices like my phone, my wifi goes fast. Is there any solution for this? please let me know. Read More
Needing help with the TEXT function
Objective: create a date counter to add 1 day to previous cell and return day of month (number 1 to 31). I also need to be able to reference every cells’ date (where the day’s number is listed) for other formulas, so it must contain the correct date.
I have tried a few things but come up with issues:
formatting cells does not have a “D” option
a regular number counter will not know when to start at “1” for a new month
the DATE() and EOMONTH() functions are not really suitable, etc.
The one I have most success with is the TEXT() function, but notice that it does not recognize or change the month if only day is returned (it automatically thinks Jan as the month).
e.g. :
C4 = June 26th, 2024
=TEXT(C4, “mmmm d”) output: June 26 date noted: June 26
=TEXT(C4,”d”) output: 26 date noted: January 26 <— this is the issue
Any help??
Objective: create a date counter to add 1 day to previous cell and return day of month (number 1 to 31). I also need to be able to reference every cells’ date (where the day’s number is listed) for other formulas, so it must contain the correct date. I have tried a few things but come up with issues:formatting cells does not have a “D” optiona regular number counter will not know when to start at “1” for a new monththe DATE() and EOMONTH() functions are not really suitable, etc. The one I have most success with is the TEXT() function, but notice that it does not recognize or change the month if only day is returned (it automatically thinks Jan as the month). e.g. :C4 = June 26th, 2024=TEXT(C4, “mmmm d”) output: June 26 date noted: June 26=TEXT(C4,”d”) output: 26 date noted: January 26 <— this is the issue Any help?? Read More
SMIME without AD automation
Hello, I want to know if there is any way to automate SMIME deployment in a cloud only tenant (i.e. without involving AD), Any best practices or known steps via EXO or Intune even will be welcome.
Hello, I want to know if there is any way to automate SMIME deployment in a cloud only tenant (i.e. without involving AD), Any best practices or known steps via EXO or Intune even will be welcome. Read More
an able to login to my CPC
I have got an error message while I tried to log in to my CPC.
I have got an error message while I tried to log in to my CPC. Read More
Why is LSAP using a huge amount of memory?
Hi all,
Just needing a bit of help. My Windows 11 dell inspiron 7591 2in1 (i7) has been having issues with LSAP (lsass.exe) using an inordinate amount of memory. Omce it starts up it just keeps usind more an more memory until the system crashes.
So far I have done;
a couple of clean installs – the problem comes back as soon as I unpause auto updates. Unfortunately as windows now wont let you install selective updates I’m not sure which one is causing the problem.fill system scan with bit defender for virusesensured my drivers are up to dateRun a DISM restore heath Run chkdskTurned off BOTH File encryption and Device encryptionRun sfc /scannowHardware scans with Dell support.
so far no luck so any pointers would be appreciated.
Thankyou!!
Hi all, Just needing a bit of help. My Windows 11 dell inspiron 7591 2in1 (i7) has been having issues with LSAP (lsass.exe) using an inordinate amount of memory. Omce it starts up it just keeps usind more an more memory until the system crashes. So far I have done;a couple of clean installs – the problem comes back as soon as I unpause auto updates. Unfortunately as windows now wont let you install selective updates I’m not sure which one is causing the problem.fill system scan with bit defender for virusesensured my drivers are up to dateRun a DISM restore heath Run chkdskTurned off BOTH File encryption and Device encryptionRun sfc /scannowHardware scans with Dell support. so far no luck so any pointers would be appreciated. Thankyou!! Read More
i have a txt file with ‘temp’ and ‘heat flux’ and i need to use it to calculate final temp and optimum emissivity. my code runs fine but the output file is coming out blank?
C1 = 3.74177e8;
C2 = 1.43878e4;
sig = 5.67e-8;
T_static = 229.58;
Tval = fopen(‘radiative boundary.txt’, ‘r’);
Tvalue = fscanf(Tval, ‘%f’);
fclose(Tval);
T = Tvalue;
H = hvalue;
Temp_value = [];
optimum_emsvty = [];
Temp_value = Temp_value;
optimum_emsvty = optimum_emsvty;
for i = 1:length(H)
e0 = 0.0;
e1 = 1.0;
delt = 1;
while abs(delt) > 0.000001
e = (e0 + e1) / 2.0;
c = 500;
for j = 1:5
c = c – wall(c, i, T, H, e, sig, T_static) / derivative(@wall, c, 1e-6, i, T, H, e, sig, T_static);
end
powr = integral(@(lam) power(lam, C1, C2, e), 8, 12);
delt = powr – integral(@(lam) power(lam, C1, C2, 1), 8, 12);
if delt > 0
e1 = e;
elseif delt < 0
e0 = e;
end
end
c = double(c);
end
writematrix(optimum_emsvty,’Optimum_Emissivity.txt’);
writematrix(Temp_value,’Final_Wall_Temperature.txt’);
function powr = power(lam, C1, C2, e)
powr = (e * C1) / ((lam^5) * (exp(C2 / (lam * T_static)) – 1));
endC1 = 3.74177e8;
C2 = 1.43878e4;
sig = 5.67e-8;
T_static = 229.58;
Tval = fopen(‘radiative boundary.txt’, ‘r’);
Tvalue = fscanf(Tval, ‘%f’);
fclose(Tval);
T = Tvalue;
H = hvalue;
Temp_value = [];
optimum_emsvty = [];
Temp_value = Temp_value;
optimum_emsvty = optimum_emsvty;
for i = 1:length(H)
e0 = 0.0;
e1 = 1.0;
delt = 1;
while abs(delt) > 0.000001
e = (e0 + e1) / 2.0;
c = 500;
for j = 1:5
c = c – wall(c, i, T, H, e, sig, T_static) / derivative(@wall, c, 1e-6, i, T, H, e, sig, T_static);
end
powr = integral(@(lam) power(lam, C1, C2, e), 8, 12);
delt = powr – integral(@(lam) power(lam, C1, C2, 1), 8, 12);
if delt > 0
e1 = e;
elseif delt < 0
e0 = e;
end
end
c = double(c);
end
writematrix(optimum_emsvty,’Optimum_Emissivity.txt’);
writematrix(Temp_value,’Final_Wall_Temperature.txt’);
function powr = power(lam, C1, C2, e)
powr = (e * C1) / ((lam^5) * (exp(C2 / (lam * T_static)) – 1));
end C1 = 3.74177e8;
C2 = 1.43878e4;
sig = 5.67e-8;
T_static = 229.58;
Tval = fopen(‘radiative boundary.txt’, ‘r’);
Tvalue = fscanf(Tval, ‘%f’);
fclose(Tval);
T = Tvalue;
H = hvalue;
Temp_value = [];
optimum_emsvty = [];
Temp_value = Temp_value;
optimum_emsvty = optimum_emsvty;
for i = 1:length(H)
e0 = 0.0;
e1 = 1.0;
delt = 1;
while abs(delt) > 0.000001
e = (e0 + e1) / 2.0;
c = 500;
for j = 1:5
c = c – wall(c, i, T, H, e, sig, T_static) / derivative(@wall, c, 1e-6, i, T, H, e, sig, T_static);
end
powr = integral(@(lam) power(lam, C1, C2, e), 8, 12);
delt = powr – integral(@(lam) power(lam, C1, C2, 1), 8, 12);
if delt > 0
e1 = e;
elseif delt < 0
e0 = e;
end
end
c = double(c);
end
writematrix(optimum_emsvty,’Optimum_Emissivity.txt’);
writematrix(Temp_value,’Final_Wall_Temperature.txt’);
function powr = power(lam, C1, C2, e)
powr = (e * C1) / ((lam^5) * (exp(C2 / (lam * T_static)) – 1));
end output file blank MATLAB Answers — New Questions
error
Finding keypoints…
3809 keypoints found.
Warning: Function D:siftDemoV4image.m has the same name as a MATLAB builtin. We
suggest you rename the function to avoid a potential name conflict.
> In sift at 48
In abcd at 2
Drawing SIFT keypoints …
??? Error using ==> image
Too many input arguments.
Error in ==> imagesc at 19
hh = image(varargin{1},’CDataMapping’,’scaled’);
Error in ==> showkeys at 16
imagesc(image);
Error in ==> abcd at 3
showkeys(im1,loc1);
I AM GETTING THESE ERRORS WHILE RUNNING THE FOLLOWING MATLAB CODE
function num=match(im1,im2)
[im1,des1,loc1]=sift(‘mm.pgm’);
showkeys(im1,loc1);
[im2,des2,loc2]=sift(‘nn.pgm’);
showkeys(im2,loc2);
distRatio=0.6;
des2t =des2′;
for i = 1 : size(des1,1)
dotprods = des1(i,:) * des2t;
[vals,indx] = sort(acos(dotprods));
if (vals(1) < distRatio * vals(2))
match(i) = indx(1);
else
match(i) = 0;
end
end
im3 = appendimages(im1,im2);
figure(‘Position’, [100 100 size(im3,2) size(im3,1)]);
colormap(‘gray’);
imagesc(im3);
hold on;
cols1 = size(im1,2);
for i = 1: size(des1,1)
if (match(i) > 0)
line([loc1(i,2) loc2(match(i),2)+cols1], …
[loc1(i,1) loc2(match(i),1)], ‘Color’, ‘c’);
end
end
hold off
num = sum(match >0);
fprintf(‘Found %d matches.n’, num);
HELP ME PLEASEFinding keypoints…
3809 keypoints found.
Warning: Function D:siftDemoV4image.m has the same name as a MATLAB builtin. We
suggest you rename the function to avoid a potential name conflict.
> In sift at 48
In abcd at 2
Drawing SIFT keypoints …
??? Error using ==> image
Too many input arguments.
Error in ==> imagesc at 19
hh = image(varargin{1},’CDataMapping’,’scaled’);
Error in ==> showkeys at 16
imagesc(image);
Error in ==> abcd at 3
showkeys(im1,loc1);
I AM GETTING THESE ERRORS WHILE RUNNING THE FOLLOWING MATLAB CODE
function num=match(im1,im2)
[im1,des1,loc1]=sift(‘mm.pgm’);
showkeys(im1,loc1);
[im2,des2,loc2]=sift(‘nn.pgm’);
showkeys(im2,loc2);
distRatio=0.6;
des2t =des2′;
for i = 1 : size(des1,1)
dotprods = des1(i,:) * des2t;
[vals,indx] = sort(acos(dotprods));
if (vals(1) < distRatio * vals(2))
match(i) = indx(1);
else
match(i) = 0;
end
end
im3 = appendimages(im1,im2);
figure(‘Position’, [100 100 size(im3,2) size(im3,1)]);
colormap(‘gray’);
imagesc(im3);
hold on;
cols1 = size(im1,2);
for i = 1: size(des1,1)
if (match(i) > 0)
line([loc1(i,2) loc2(match(i),2)+cols1], …
[loc1(i,1) loc2(match(i),1)], ‘Color’, ‘c’);
end
end
hold off
num = sum(match >0);
fprintf(‘Found %d matches.n’, num);
HELP ME PLEASE Finding keypoints…
3809 keypoints found.
Warning: Function D:siftDemoV4image.m has the same name as a MATLAB builtin. We
suggest you rename the function to avoid a potential name conflict.
> In sift at 48
In abcd at 2
Drawing SIFT keypoints …
??? Error using ==> image
Too many input arguments.
Error in ==> imagesc at 19
hh = image(varargin{1},’CDataMapping’,’scaled’);
Error in ==> showkeys at 16
imagesc(image);
Error in ==> abcd at 3
showkeys(im1,loc1);
I AM GETTING THESE ERRORS WHILE RUNNING THE FOLLOWING MATLAB CODE
function num=match(im1,im2)
[im1,des1,loc1]=sift(‘mm.pgm’);
showkeys(im1,loc1);
[im2,des2,loc2]=sift(‘nn.pgm’);
showkeys(im2,loc2);
distRatio=0.6;
des2t =des2′;
for i = 1 : size(des1,1)
dotprods = des1(i,:) * des2t;
[vals,indx] = sort(acos(dotprods));
if (vals(1) < distRatio * vals(2))
match(i) = indx(1);
else
match(i) = 0;
end
end
im3 = appendimages(im1,im2);
figure(‘Position’, [100 100 size(im3,2) size(im3,1)]);
colormap(‘gray’);
imagesc(im3);
hold on;
cols1 = size(im1,2);
for i = 1: size(des1,1)
if (match(i) > 0)
line([loc1(i,2) loc2(match(i),2)+cols1], …
[loc1(i,1) loc2(match(i),1)], ‘Color’, ‘c’);
end
end
hold off
num = sum(match >0);
fprintf(‘Found %d matches.n’, num);
HELP ME PLEASE redefining a built-in function MATLAB Answers — New Questions
How to draw an uncertain number of sub-images in one coordinate in app designer?
I can use matlab script to draw VMD decomposition diagram, but I don’t know how to draw such a diagram in one coordinate in app designer? Below is the code in my matlab script and the picture I need to draw. Thank you very much for your time.
[m,n]=size(u);
figure
subplot(m+1,1,1);
plot(DATA.data,’k’);grid on;
title(‘Original data’);
for i = 1:m
subplot(m+1,1,i+1);
plot(u(i,:),’k’);
title([‘Signal’,num2str(i-1),’:’]);
endI can use matlab script to draw VMD decomposition diagram, but I don’t know how to draw such a diagram in one coordinate in app designer? Below is the code in my matlab script and the picture I need to draw. Thank you very much for your time.
[m,n]=size(u);
figure
subplot(m+1,1,1);
plot(DATA.data,’k’);grid on;
title(‘Original data’);
for i = 1:m
subplot(m+1,1,i+1);
plot(u(i,:),’k’);
title([‘Signal’,num2str(i-1),’:’]);
end I can use matlab script to draw VMD decomposition diagram, but I don’t know how to draw such a diagram in one coordinate in app designer? Below is the code in my matlab script and the picture I need to draw. Thank you very much for your time.
[m,n]=size(u);
figure
subplot(m+1,1,1);
plot(DATA.data,’k’);grid on;
title(‘Original data’);
for i = 1:m
subplot(m+1,1,i+1);
plot(u(i,:),’k’);
title([‘Signal’,num2str(i-1),’:’]);
end appdesigner MATLAB Answers — New Questions
Unable to move Hero Tiles
Update a 5-tile Hero with new images and links and recently have been unable to move tiles around to re-order them. Today was able to edit like normal, but when the page was published it reverted back. Only way to get the order you want is to start over. The purpose of being able to move the tiles is to determine which order works best. It’s a pain to have to start over when it won’t stick or won’t even move … hoping a temporary glitch, but we’re going on week 2 now …
Update a 5-tile Hero with new images and links and recently have been unable to move tiles around to re-order them. Today was able to edit like normal, but when the page was published it reverted back. Only way to get the order you want is to start over. The purpose of being able to move the tiles is to determine which order works best. It’s a pain to have to start over when it won’t stick or won’t even move … hoping a temporary glitch, but we’re going on week 2 now … Read More
request Excel formula help counting only the visible cells when using a filter
I have tried many different ways but can not figure out how to change the following formula to work with a filter. I want to count cells in row DM if the name in column A matches “sample1″ and the cell is >0, but I need to only count visible cells when using filters on other columns. How do I add the filter criteria? =COUNTIFS($A$12:$A$400,”sample1″,DM$12:DM$400,”>0″)
I have tried many different ways but can not figure out how to change the following formula to work with a filter. I want to count cells in row DM if the name in column A matches “sample1″ and the cell is >0, but I need to only count visible cells when using filters on other columns. How do I add the filter criteria? =COUNTIFS($A$12:$A$400,”sample1″,DM$12:DM$400,”>0″) Read More
PL-300 powerpoint slides
When I attempted to access the PL-300 PowerPoint slides lab link, it displayed an error and failed to connect. Additionally, if the trainer wants to show demo lab of the PL-300, they need to utilize a lab hosting service such as Skillable or XtremeLabs.
When I attempted to access the PL-300 PowerPoint slides lab link, it displayed an error and failed to connect. Additionally, if the trainer wants to show demo lab of the PL-300, they need to utilize a lab hosting service such as Skillable or XtremeLabs. Read More
Capture screenshot function not displaying while executing test case
While executing a test case in Azure DevOps Test Plan/Test Suite I use the Capture screenshot function for EOT. The captured images do not appear for me while executing, but I can see them when I view the run results. A co-worker is able to view the screenshots while executing a test case and in the run results.
Has anyone else run into this issue?
While executing a test case in Azure DevOps Test Plan/Test Suite I use the Capture screenshot function for EOT. The captured images do not appear for me while executing, but I can see them when I view the run results. A co-worker is able to view the screenshots while executing a test case and in the run results. Has anyone else run into this issue? Read More
Block USB with Intune
We have configured attack surface reduction rule to block USB.
It works on one device but not the others therefore I assume no issue with the policy, Main config is as following(Removable Disk Deny Write Access: enabled), The rest is pretty much not configured.
-I am just wondering what events in event viewer could be checked?
-What could be a cause for the issue?
-Any known causes/issues?
We have configured attack surface reduction rule to block USB.It works on one device but not the others therefore I assume no issue with the policy, Main config is as following(Removable Disk Deny Write Access: enabled), The rest is pretty much not configured. -I am just wondering what events in event viewer could be checked?-What could be a cause for the issue?-Any known causes/issues? Read More
Urgent: Azure Information Protection Premium P2 unavailable
Dear community,
I hope you are doing great!
We are an Indirect Provider in CSP, and recently one of the legacy subscriptions has been auto-migrated to NCE. The legacy subscription was for “Azure Information Protection Premium P2” licenses, which is now the same licenses but in New Commerce Experience.
However, we are not able to find the Azure Information Protection Premium P2 NCE product to any of the available June pricelists or to any previous one. The only product we can find in NCE pricelists is for the “Charity” segment and not the “Commercial” one.
Could you please help us on this as we have to make a decision in order not to miss the cancellation window on Thursday? If you have any available info on SKU ID, the Pricelist we may find the product or if it has been renamed, kindly share it with us!
Thank you so much in advance!
Best,
Nick
Dear community,I hope you are doing great!We are an Indirect Provider in CSP, and recently one of the legacy subscriptions has been auto-migrated to NCE. The legacy subscription was for “Azure Information Protection Premium P2” licenses, which is now the same licenses but in New Commerce Experience.However, we are not able to find the Azure Information Protection Premium P2 NCE product to any of the available June pricelists or to any previous one. The only product we can find in NCE pricelists is for the “Charity” segment and not the “Commercial” one.Could you please help us on this as we have to make a decision in order not to miss the cancellation window on Thursday? If you have any available info on SKU ID, the Pricelist we may find the product or if it has been renamed, kindly share it with us! Thank you so much in advance!Best,Nick Read More
Handling Hundreds of Open orphaned Alerts in Microsoft Defender for Cloud
Hello Community,
I have several hundred open alerts generated by Microsoft Defender for Cloud that haven’t been addressed. According to the documentation, it’s essential to review and handle these alerts to ensure the Machine Learning algorithm adapts to our environment. Should I process each alert individually, which is challenging due to the historical context and missing logs, or use a script to clean them up manually? How would you approach this situation?
Thanks in advance for your help!
Hello Community,I have several hundred open alerts generated by Microsoft Defender for Cloud that haven’t been addressed. According to the documentation, it’s essential to review and handle these alerts to ensure the Machine Learning algorithm adapts to our environment. Should I process each alert individually, which is challenging due to the historical context and missing logs, or use a script to clean them up manually? How would you approach this situation?Thanks in advance for your help! Read More
Analyze Data in Excel
Dear Team,
After the upgrade all our machine now have the Analyse Data tab in excel, what I experienced the this is not working without internet access. Am I right if I wonder that the my data is pushed to the cloud even worse to the copilot for analysis?
Can you please let me know what exactly leaving he organisation boarders with use of this feature? I already read the privacy statement what is very moderated useful.
Dear Team, After the upgrade all our machine now have the Analyse Data tab in excel, what I experienced the this is not working without internet access. Am I right if I wonder that the my data is pushed to the cloud even worse to the copilot for analysis? Can you please let me know what exactly leaving he organisation boarders with use of this feature? I already read the privacy statement what is very moderated useful. Read More
AI Software Solutions, Call Cabinet, and Mend offer transactable solutions in Azure Marketplace
Microsoft partners like AI Software Solutions, CallCabinet, and Mend deliver transact-capable offers, which allow you to purchase directly from Azure Marketplace. Learn about these offers below:
AI.S² Demand Forecast Solution: Struggling with unreliable, time-consuming forecasts failing to predict the correct order volume throughout your value chain? The AI.S² Demand Forecast Solution imports your historical data and enriches it with external data (for example weather data or economic data), then uses AI-powered forecasting to provide accurate predictions along your entire value chain.
CallCabinet Compliance Call Recording & Analytics: CallCabinet is a cloud-native solution that provides seamless, real-time, and compliant recording of Microsoft Teams voice, video, and screen sharing. Gain business intelligence from conversation analytics that enables your business to improve customer experience, increase agent retention rates, monitor employee performance, and more.
Mend.io – Application Security Platform: Stop chasing vulnerabilities and start proactively managing application risk with Mend.io. Integrated with Microsoft Azure DevOps and Visual Studio, the AppSec platform includes Mend SCA for securing open-source software development, Mend SAST for custom code vulnerability detection, Mend Container for full-stack container security scanning, and Mend Renovate Enterprise for dependency management.
Microsoft Tech Community – Latest Blogs –Read More
Want to get the maxima and minima not thr first maxima and minima. if i remove the 1 in this max_indices(1) they give error.
Want to get the maxima and minima not thr first maxima and minima. if i remove the 1 in this max_indices(1) they give error.
run("TestCode.m")Want to get the maxima and minima not thr first maxima and minima. if i remove the 1 in this max_indices(1) they give error.
run("TestCode.m") Want to get the maxima and minima not thr first maxima and minima. if i remove the 1 in this max_indices(1) they give error.
run("TestCode.m") islocalmaxima and minma MATLAB Answers — New Questions
how to use NARX tool for a vectors of input to output?
I have a input of matrix sample N = 100 with time span of 30 seconds with discretization with dt = 0.01. Input of and for and the corresponding output for . How can I use the "NARX Neural Networks" for the above data. Please refer above DATA.mat file . How could the vector 100 samples are used for training and validate the trained model?I have a input of matrix sample N = 100 with time span of 30 seconds with discretization with dt = 0.01. Input of and for and the corresponding output for . How can I use the "NARX Neural Networks" for the above data. Please refer above DATA.mat file . How could the vector 100 samples are used for training and validate the trained model? I have a input of matrix sample N = 100 with time span of 30 seconds with discretization with dt = 0.01. Input of and for and the corresponding output for . How can I use the "NARX Neural Networks" for the above data. Please refer above DATA.mat file . How could the vector 100 samples are used for training and validate the trained model? narxnet, deep learning with time series MATLAB Answers — New Questions