Month: September 2024
[One Drive] I can’t see the thumbnails of files when I use the search tool.
Until last week, when searching for a file by name in the OneDrive online search bar, it was possible to define the way the results would be displayed (by blocks, list, list with details, etc.). However, today when I searched for a file, I saw that this function was no longer enabled.
It only appears in list format. This is very bad because viewing the thumbnail of the file when searching helps a lot in finding what you are looking for, especially when it is an image. Is there a function to enable viewing as blocks in the search results again?
Here is a print of my search screen, the icons appear as a list and not as a thumbnail (block).
Previously, this option to select the type of view I want to have, just like in the “My Files” tab, was also available when searching, but now it no longer appears. I think it is important to have this tool because when I search for the word “IMG” I have several files with that beginning and if I could see the thumbnail of it when searching, I would not need to click or download all the files until I find the one I want.
Here is a screenshot of the “My Files” area where the option to select the file viewing mode is available.
I already made a post about it on the problems page, but there was no solution, they recommended that I make a feedback here
Until last week, when searching for a file by name in the OneDrive online search bar, it was possible to define the way the results would be displayed (by blocks, list, list with details, etc.). However, today when I searched for a file, I saw that this function was no longer enabled.It only appears in list format. This is very bad because viewing the thumbnail of the file when searching helps a lot in finding what you are looking for, especially when it is an image. Is there a function to enable viewing as blocks in the search results again? Here is a print of my search screen, the icons appear as a list and not as a thumbnail (block). Previously, this option to select the type of view I want to have, just like in the “My Files” tab, was also available when searching, but now it no longer appears. I think it is important to have this tool because when I search for the word “IMG” I have several files with that beginning and if I could see the thumbnail of it when searching, I would not need to click or download all the files until I find the one I want.Here is a screenshot of the “My Files” area where the option to select the file viewing mode is available. I already made a post about it on the problems page, but there was no solution, they recommended that I make a feedback here Read More
Sound not coming through speaker
Hello,
when joining a teams call with a headset on, the sound won’t come through the headset, but through the speaker of the laptop itself. It’s really confusing, because when i watch a video on Youtube with the headset on, the sound does come through the headset.
In Teams (Desktop App) the headset can’t even be selected. I have no other option than to choose the laptop speaker.
Any solutions?
Regards
Hello, when joining a teams call with a headset on, the sound won’t come through the headset, but through the speaker of the laptop itself. It’s really confusing, because when i watch a video on Youtube with the headset on, the sound does come through the headset. In Teams (Desktop App) the headset can’t even be selected. I have no other option than to choose the laptop speaker. Any solutions? Regards Read More
Lookup Column don’t show all items
We have a document library with around 500 documents. This document library contains a lookup column with 172 values. Unfortunately, not all of these 172 values are displayed and I cannot explain this. Does anyone have a tip on how to solve this?
We have a document library with around 500 documents. This document library contains a lookup column with 172 values. Unfortunately, not all of these 172 values are displayed and I cannot explain this. Does anyone have a tip on how to solve this? Read More
Can Copilot extract and concatenate all paragraphs containing given keyword?
I want to upload ebooks and papers to Copilot and ask it to extract and concatenate every paragraph containing strings I give it, eg “Battery pack”.
I haven’t been able to make it do this.
Can anyone suggest how I can drive it better please?
Thanks.
I want to upload ebooks and papers to Copilot and ask it to extract and concatenate every paragraph containing strings I give it, eg “Battery pack”. I haven’t been able to make it do this. Can anyone suggest how I can drive it better please? Thanks. Read More
The Azure SQL database export/import process might sometimes take a lot of time
We have some cases when our customers have reported experiencing delays during their export/import activities on the portal. I’d like to take this opportunity to explain the reasons behind this and offer some recommendations to optimize these processes.
The Azure SQL Database Import/Export service provides a limited number of compute virtual machines (VMs) per region to process import and export operations. The compute VMs are hosted per region to make sure that the import or export avoids cross-region bandwidth delays and charges. If too many requests are made at the same time in the same region, significant delays can occur in processing the operations. The time that’s required to complete requests can vary from a few seconds to many hours.
To mitigate this, we highly recommend using the SQLPackage utility for exporting and importing Azure SQL databases. The SQLPackage utility allows you to run multiple commands in parallel for different subsets of tables, thereby expediting the import/export operations. It is available for Windows, macOS, and Linux, and can also be integrated into development pipelines.
For more detailed instructions on how to use the SQLPackage command-line utility, please refer to the following resources:
Export parameters and properties to export a SQL Server database using the SQLPackage
Import parameters and properties to import a SQL Server database using the SQLPackage
SqlPackage in development pipelines
Microsoft Tech Community – Latest Blogs –Read More
how to control landsman converter’s inrush current using model predictive control
i want to control the inrush current in load side at dynamic conditionsi want to control the inrush current in load side at dynamic conditions i want to control the inrush current in load side at dynamic conditions power_electronics_control MATLAB Answers — New Questions
Optimize code without for loop
My code uses 6 nested for loops, it is basically used to build 3D matrix with data in specific order from 2D matrix with data in random order.
These lines work as expected but take significant times to execute.
Is there any alternative approach of programming which lead to avoid all these for loops and therefore speed up the execution ?
for z=1:1001
p=0;
for j=1:length(DOFNameRef)
for n=1:length(DOFDir)
for i=1:length(DOFNamePoint)
for l=1:length(DOFDir)
p = p+1;
for k=1:Mlig*Mcol
c(k) = contains(Resp(k),DOFNamePoint(i)) && contains(Resp(k),DOFDir(l)) && contains(Ref(k), DOFNameRef(j)) && contains(Ref(k),DOFDir(n));
end
[NumLigne, NumCol] = NLignNCol(p,Mlig, Mcol);
M(NumLigne,NumCol,z) = Data(z, c);
end
end
end
end
endMy code uses 6 nested for loops, it is basically used to build 3D matrix with data in specific order from 2D matrix with data in random order.
These lines work as expected but take significant times to execute.
Is there any alternative approach of programming which lead to avoid all these for loops and therefore speed up the execution ?
for z=1:1001
p=0;
for j=1:length(DOFNameRef)
for n=1:length(DOFDir)
for i=1:length(DOFNamePoint)
for l=1:length(DOFDir)
p = p+1;
for k=1:Mlig*Mcol
c(k) = contains(Resp(k),DOFNamePoint(i)) && contains(Resp(k),DOFDir(l)) && contains(Ref(k), DOFNameRef(j)) && contains(Ref(k),DOFDir(n));
end
[NumLigne, NumCol] = NLignNCol(p,Mlig, Mcol);
M(NumLigne,NumCol,z) = Data(z, c);
end
end
end
end
end My code uses 6 nested for loops, it is basically used to build 3D matrix with data in specific order from 2D matrix with data in random order.
These lines work as expected but take significant times to execute.
Is there any alternative approach of programming which lead to avoid all these for loops and therefore speed up the execution ?
for z=1:1001
p=0;
for j=1:length(DOFNameRef)
for n=1:length(DOFDir)
for i=1:length(DOFNamePoint)
for l=1:length(DOFDir)
p = p+1;
for k=1:Mlig*Mcol
c(k) = contains(Resp(k),DOFNamePoint(i)) && contains(Resp(k),DOFDir(l)) && contains(Ref(k), DOFNameRef(j)) && contains(Ref(k),DOFDir(n));
end
[NumLigne, NumCol] = NLignNCol(p,Mlig, Mcol);
M(NumLigne,NumCol,z) = Data(z, c);
end
end
end
end
end optimze, for loop MATLAB Answers — New Questions
Why is the python matlab.engine 2-3 times slower when running on another equally powerful cpu?
I am using the matlab engine to convert stimulation patterns of cochlear implants into audio through a vocoder supplied by cochlear ltd from my python code.
My code is quite fast when I run it on my computer, the part that uses the matlab engine runs in about 2 seconds if I use 10 engines in parallel.
Now I tried to run my code in our cluster on a machine with epyc cpus, which are at least as fast as my own computer’s cpu. However, while the rest of my code runs on this cluster computer almost as fast as on my own machine – I see at most an increase by a factor of 1.2 – the matlab.engine part is slowed down by a factor of 2-3, i.e., the same code requires 8-9 seconds instead of 2-3 seconds, which is quite detrimental in a large scale experiment.
The slice of code that uses the matlab.engine, and which slows down on the other machine, is
for i, pred in enumerate(predictions):
original_length = dataset[i][‘length_EP’]
pred = ApplyPostProcessing(pred,original_length)
vocoded_futures[i] = eng_list[i%len(eng_list)].runVocoderPython(matlab.double(pred), nargout=2, background=True)
The "eng_list" variable is just a list of separate matlab engines I use to speed up the processing. "runVocoderPython" is just a wrapper for a matlab function that runs the vocoder.
Does anyone know what could cause this specific slowdown of the matlab.engine?
I use Python 3.8.19, Matlab 2022a and Linux as OS.I am using the matlab engine to convert stimulation patterns of cochlear implants into audio through a vocoder supplied by cochlear ltd from my python code.
My code is quite fast when I run it on my computer, the part that uses the matlab engine runs in about 2 seconds if I use 10 engines in parallel.
Now I tried to run my code in our cluster on a machine with epyc cpus, which are at least as fast as my own computer’s cpu. However, while the rest of my code runs on this cluster computer almost as fast as on my own machine – I see at most an increase by a factor of 1.2 – the matlab.engine part is slowed down by a factor of 2-3, i.e., the same code requires 8-9 seconds instead of 2-3 seconds, which is quite detrimental in a large scale experiment.
The slice of code that uses the matlab.engine, and which slows down on the other machine, is
for i, pred in enumerate(predictions):
original_length = dataset[i][‘length_EP’]
pred = ApplyPostProcessing(pred,original_length)
vocoded_futures[i] = eng_list[i%len(eng_list)].runVocoderPython(matlab.double(pred), nargout=2, background=True)
The "eng_list" variable is just a list of separate matlab engines I use to speed up the processing. "runVocoderPython" is just a wrapper for a matlab function that runs the vocoder.
Does anyone know what could cause this specific slowdown of the matlab.engine?
I use Python 3.8.19, Matlab 2022a and Linux as OS. I am using the matlab engine to convert stimulation patterns of cochlear implants into audio through a vocoder supplied by cochlear ltd from my python code.
My code is quite fast when I run it on my computer, the part that uses the matlab engine runs in about 2 seconds if I use 10 engines in parallel.
Now I tried to run my code in our cluster on a machine with epyc cpus, which are at least as fast as my own computer’s cpu. However, while the rest of my code runs on this cluster computer almost as fast as on my own machine – I see at most an increase by a factor of 1.2 – the matlab.engine part is slowed down by a factor of 2-3, i.e., the same code requires 8-9 seconds instead of 2-3 seconds, which is quite detrimental in a large scale experiment.
The slice of code that uses the matlab.engine, and which slows down on the other machine, is
for i, pred in enumerate(predictions):
original_length = dataset[i][‘length_EP’]
pred = ApplyPostProcessing(pred,original_length)
vocoded_futures[i] = eng_list[i%len(eng_list)].runVocoderPython(matlab.double(pred), nargout=2, background=True)
The "eng_list" variable is just a list of separate matlab engines I use to speed up the processing. "runVocoderPython" is just a wrapper for a matlab function that runs the vocoder.
Does anyone know what could cause this specific slowdown of the matlab.engine?
I use Python 3.8.19, Matlab 2022a and Linux as OS. matlab.engine, python2matlab, python MATLAB Answers — New Questions
Funktion for a floating masspoint in 3D
Hey guys,
I´m new to matlab and I want you to ask you some questions.
First of all, I want to plot a floating masspoint on a 3D surface, so I try to figure out how to get the gradient, angle of the surface and at last but not least to get a differential equation.
My code looks like this:
%% paramter
h=0.0002; %
g=-9.81; %gravity
u=0.2; %friction
x0=-12;
y0=-12;
%% gradienten
fgradx = ((x0+h,y0)-(x0-h,y0))/2*h;
fgrady = ((x0,y0+h)-(x0,y0-h))/2*h;
%% angle
winkelx = atan((boden(x + h, c) – boden(x – h, c))/(2*h));
winkely = atan((boden(y + h, c) – boden(y – h, c))/(2*h));
%% Differential Equation
F=[Y(2);Y(3);cos(winkelx)*((sin(winkelx)*g*m)-(cos(winkelx)*m*g*u));cos(winkely)*((sin(winkely)*g*m)-(cos(winkely)*m*g*u))];
So I want you to know, if the code is fine or if i messed up. Would be nice, if you can give me some tips :).
Have a nice day.Hey guys,
I´m new to matlab and I want you to ask you some questions.
First of all, I want to plot a floating masspoint on a 3D surface, so I try to figure out how to get the gradient, angle of the surface and at last but not least to get a differential equation.
My code looks like this:
%% paramter
h=0.0002; %
g=-9.81; %gravity
u=0.2; %friction
x0=-12;
y0=-12;
%% gradienten
fgradx = ((x0+h,y0)-(x0-h,y0))/2*h;
fgrady = ((x0,y0+h)-(x0,y0-h))/2*h;
%% angle
winkelx = atan((boden(x + h, c) – boden(x – h, c))/(2*h));
winkely = atan((boden(y + h, c) – boden(y – h, c))/(2*h));
%% Differential Equation
F=[Y(2);Y(3);cos(winkelx)*((sin(winkelx)*g*m)-(cos(winkelx)*m*g*u));cos(winkely)*((sin(winkely)*g*m)-(cos(winkely)*m*g*u))];
So I want you to know, if the code is fine or if i messed up. Would be nice, if you can give me some tips :).
Have a nice day. Hey guys,
I´m new to matlab and I want you to ask you some questions.
First of all, I want to plot a floating masspoint on a 3D surface, so I try to figure out how to get the gradient, angle of the surface and at last but not least to get a differential equation.
My code looks like this:
%% paramter
h=0.0002; %
g=-9.81; %gravity
u=0.2; %friction
x0=-12;
y0=-12;
%% gradienten
fgradx = ((x0+h,y0)-(x0-h,y0))/2*h;
fgrady = ((x0,y0+h)-(x0,y0-h))/2*h;
%% angle
winkelx = atan((boden(x + h, c) – boden(x – h, c))/(2*h));
winkely = atan((boden(y + h, c) – boden(y – h, c))/(2*h));
%% Differential Equation
F=[Y(2);Y(3);cos(winkelx)*((sin(winkelx)*g*m)-(cos(winkelx)*m*g*u));cos(winkely)*((sin(winkely)*g*m)-(cos(winkely)*m*g*u))];
So I want you to know, if the code is fine or if i messed up. Would be nice, if you can give me some tips :).
Have a nice day. 3d plot, ball, gradient, angl, differential equations MATLAB Answers — New Questions
measure the distance between two object
Hello everyone;
I detect two different objects in Yolo v4 and I want to measure the distance between them, what is the method to measure the distance
can anyone help me…Hello everyone;
I detect two different objects in Yolo v4 and I want to measure the distance between them, what is the method to measure the distance
can anyone help me… Hello everyone;
I detect two different objects in Yolo v4 and I want to measure the distance between them, what is the method to measure the distance
can anyone help me… deep learning, image processing, yolo, object detection MATLAB Answers — New Questions
DC sync attack alert issue- Microsoft Sentinel
I’ve been receiving an alert in Microsoft Sentinel titled “Non-Domain Controller Active Directory Replication on one endpoint.” However, I’m having difficulty investigating the event because key fields like “Account” and “Subject Name,” which are crucial for the analysis, are missing. Do you have any idea why these fields might be empty?
I’ve been receiving an alert in Microsoft Sentinel titled “Non-Domain Controller Active Directory Replication on one endpoint.” However, I’m having difficulty investigating the event because key fields like “Account” and “Subject Name,” which are crucial for the analysis, are missing. Do you have any idea why these fields might be empty? Read More
Browser Caching
I’m having some trouble with Microsoft Edge it keeps crashing every time I try to open a specific website. The whole browser just freezes and shuts down. I’ve tried opening the same site on other browsers like Chrome and Firefox, and it works perfectly fine there, so I’m really not sure what’s going on with Edge. I’ve already tried clearing the cache and disabling extensions, but nothing seems to help. Has anyone else experienced this, or does anyone know how to fix it? Any advice would be appreciated.
I’m having some trouble with Microsoft Edge it keeps crashing every time I try to open a specific website. The whole browser just freezes and shuts down. I’ve tried opening the same site on other browsers like Chrome and Firefox, and it works perfectly fine there, so I’m really not sure what’s going on with Edge. I’ve already tried clearing the cache and disabling extensions, but nothing seems to help. Has anyone else experienced this, or does anyone know how to fix it? Any advice would be appreciated. Read More
Setting up a virtual desktop for game development
Hi
For three days i have been trying to find out how to set up a virtual desktop, spoken to multiple salespeople and experimented via gptchat.. however I am just going around in circles… so hopefully this is the place to get an answer!
I want to see whether I can develop a 3d Unity game on a virtual desktop rather than buy a new laptop and if this will be cost effective route moving forward
The recommended spec for the laptop seems to be around
although think the GPU could drop a level to the 3xxx
thanks very much for any help and insights you can offer
Hi For three days i have been trying to find out how to set up a virtual desktop, spoken to multiple salespeople and experimented via gptchat.. however I am just going around in circles… so hopefully this is the place to get an answer! I want to see whether I can develop a 3d Unity game on a virtual desktop rather than buy a new laptop and if this will be cost effective route moving forward The recommended spec for the laptop seems to be aroundIntel® Core™ i7 10 Core Processor 13620H (4.90GHz Turbo) 32GB PCS PRO SODIMM DDR4 3200MHz (2 x 16GB) NVIDIA® GeForce® RTX 4070 – 8.0GB GDDR6 Video RAM – DirectX® 12.1500gb ssdalthough think the GPU could drop a level to the 3xxx Please can someone help me translate this into the equivalent spec for virtual desktop and also tell me how to set up – when i go to virtual desktop option in azure i don’t get offered a choice on specs am desperate to try to this out asapthanks very much for any help and insights you can offer Read More
Peering Virtual Network Access to OpenAI resources?
In tenant A, I have an existing OpenAI resource that is set to only be accessible from a virtual network, in which a VM rests in place.
The VM can connect to the OpenAI resource successfully.
Now to access other OpenAI resources from another tenant B, I have added a peering connection to connect the virtual network of the OpenAI resources from tenant B with the virtual network in tenant A. (the typical 10.0.0.0-10.1.0.0 example)
But when trying to call the API endpoint in the VM using REST or JavaScript SDK, 403 error occurs: “Access denied due to Virtual Network/Firewall rules”
The peering network is confirmed to be successfully through the network interface of the VM.
In tenant A, I have an existing OpenAI resource that is set to only be accessible from a virtual network, in which a VM rests in place.The VM can connect to the OpenAI resource successfully. Now to access other OpenAI resources from another tenant B, I have added a peering connection to connect the virtual network of the OpenAI resources from tenant B with the virtual network in tenant A. (the typical 10.0.0.0-10.1.0.0 example) But when trying to call the API endpoint in the VM using REST or JavaScript SDK, 403 error occurs: “Access denied due to Virtual Network/Firewall rules” The peering network is confirmed to be successfully through the network interface of the VM. Read More
Word headers and footers appearing blurry on created Templates
Hi,
I wonder if anyone can help with an issue we are having with letterhead templates we are creating.
We create the word templates on Word for Mac using version 16.8 we place a header and footer using a PDF, what seems to be happening a lot lately, is the customer is coming back and saying the headers and footers are blurry, when we open again on the mac they look fine to us, it doesn’t happen on all the templates we send but seems to be getting more lately, the only way around this is to open the PDFs we use in the headers and footers and save them as PNG or JPG files then place them in the headers and footers, and this works ok, this never used to happen but it’s getting a more an more common issue now.
Any advice and help would be greatly appreciated
Thanks
Hi,I wonder if anyone can help with an issue we are having with letterhead templates we are creating.We create the word templates on Word for Mac using version 16.8 we place a header and footer using a PDF, what seems to be happening a lot lately, is the customer is coming back and saying the headers and footers are blurry, when we open again on the mac they look fine to us, it doesn’t happen on all the templates we send but seems to be getting more lately, the only way around this is to open the PDFs we use in the headers and footers and save them as PNG or JPG files then place them in the headers and footers, and this works ok, this never used to happen but it’s getting a more an more common issue now. Any advice and help would be greatly appreciated Thanks Read More
Download Error 0800f0805
My PC has stopped downloading Windows 11 updates. The history shows that 23H2 was successfully installed on 8/11/2023 although Settings/System/ About states that the pc is still at Version 22H2, OS Build 22621.3527. Updates have been successfully installed in 2024 up until “2024-04 Cumulative Update Preview for Windows 11 Version 2H2”. Since then the Automatic Updates have failed to download providing the error code 0800f0805.
My PC has stopped downloading Windows 11 updates. The history shows that 23H2 was successfully installed on 8/11/2023 although Settings/System/ About states that the pc is still at Version 22H2, OS Build 22621.3527. Updates have been successfully installed in 2024 up until “2024-04 Cumulative Update Preview for Windows 11 Version 2H2”. Since then the Automatic Updates have failed to download providing the error code 0800f0805. Read More
MPPT P&O Algorithm
Hello community;
I hope everyone is doing well. I’m trying to find an MPPT P&O algorithm.
I will be extremely appreciative of your assistance and responses.
Best regards.Hello community;
I hope everyone is doing well. I’m trying to find an MPPT P&O algorithm.
I will be extremely appreciative of your assistance and responses.
Best regards. Hello community;
I hope everyone is doing well. I’m trying to find an MPPT P&O algorithm.
I will be extremely appreciative of your assistance and responses.
Best regards. mppt-p o-algorithm MATLAB Answers — New Questions
Plot Bode diagrams from the given closed loop system frequency responses in the table
I am stuck here, I am able to plot the bode diagram from a TF and yet given closed loop system frequency responses I get stumped. Is there a video or link where I can learn more about coding these types of Bode diagrams?I am stuck here, I am able to plot the bode diagram from a TF and yet given closed loop system frequency responses I get stumped. Is there a video or link where I can learn more about coding these types of Bode diagrams? I am stuck here, I am able to plot the bode diagram from a TF and yet given closed loop system frequency responses I get stumped. Is there a video or link where I can learn more about coding these types of Bode diagrams? bode diagram MATLAB Answers — New Questions
How to read analog signal from Arduino in Matlab?
sir , i want the serial monitor data in Arduino to be accessed in Matlab.some people told me to use data streamer in Excel to store the data in Excel sheet but everytime when i open the excel sheet it always ask me to do some common procedure like
1.Connect a Device
2.Choose your Device to stream data
whether it is possible to make all this process in automatic manner in Matlabsir , i want the serial monitor data in Arduino to be accessed in Matlab.some people told me to use data streamer in Excel to store the data in Excel sheet but everytime when i open the excel sheet it always ask me to do some common procedure like
1.Connect a Device
2.Choose your Device to stream data
whether it is possible to make all this process in automatic manner in Matlab sir , i want the serial monitor data in Arduino to be accessed in Matlab.some people told me to use data streamer in Excel to store the data in Excel sheet but everytime when i open the excel sheet it always ask me to do some common procedure like
1.Connect a Device
2.Choose your Device to stream data
whether it is possible to make all this process in automatic manner in Matlab matlab, data, excel, data acquisition, importing excel data MATLAB Answers — New Questions
Why i got this error and how to solve it?
I try to use ‘final states-save final operating piont’,but got the error:
" An error occurred while running the simulation and the simulation was terminated
Caused by:
Simulink is unable to save the operating point of the C Level-2 S-Function (sfun_Controller) block ‘***/sfun_Controller’ because the S-function has pointer work (PWork) vectors.
"
Why there are pionter vectors and how to deal with them?I try to use ‘final states-save final operating piont’,but got the error:
" An error occurred while running the simulation and the simulation was terminated
Caused by:
Simulink is unable to save the operating point of the C Level-2 S-Function (sfun_Controller) block ‘***/sfun_Controller’ because the S-function has pointer work (PWork) vectors.
"
Why there are pionter vectors and how to deal with them? I try to use ‘final states-save final operating piont’,but got the error:
" An error occurred while running the simulation and the simulation was terminated
Caused by:
Simulink is unable to save the operating point of the C Level-2 S-Function (sfun_Controller) block ‘***/sfun_Controller’ because the S-function has pointer work (PWork) vectors.
"
Why there are pionter vectors and how to deal with them? final states, save final operating piont MATLAB Answers — New Questions