Month: May 2024
WIN11_ 24H2
hello,
I’m windows insider program subscriber ( release preview ) channel
but till now i didn’t get the 24H2 update ?
even according to tis link (https://blogs.windows.com/windows-insider/2024/05/22/releasing-windows-11-version-24h2-to-the-release-preview-channel/) it has been released to ( release preview ) channel.
**had troubleshooted windows update but nothing appeared
*win_info
Edition Windows 11 Enterprise
Version 23H2
Installed on 06/04/2023
OS build 22631.3668
Experience Windows Feature Experience Pack 1000.22700.1009.0
hello,I’m windows insider program subscriber ( release preview ) channelbut till now i didn’t get the 24H2 update ? even according to tis link (https://blogs.windows.com/windows-insider/2024/05/22/releasing-windows-11-version-24h2-to-the-release-preview-channel/) it has been released to ( release preview ) channel. **had troubleshooted windows update but nothing appeared *win_infoEdition Windows 11 EnterpriseVersion 23H2Installed on 06/04/2023OS build 22631.3668Experience Windows Feature Experience Pack 1000.22700.1009.0 Read More
Introducing spotlight settings in Viva Connections
Viva Connections is excited to roll out new features for the spotlight component, giving operators enhanced control and customization on what content appears in spotlight. Now, operators can easily pin important content to the spotlight, edit, reorder, and manage up to 11 pinned items. These pinned items take priority and appear in the spotlight first, while also staying in the spotlight indefinitely (which can be modified at any time).
Additionally, the new spotlight settings in Viva Connections will allow for adding multiple SharePoint sites as news sources for spotlight from Connections directly, ensuring a varied and dynamic content display following the pinned items, while still respecting audience targeting and boosted rankings. Enjoy a more personalized and efficient way to manage and present content in Viva Connections.
Spotlight feature mentioned in this blog post, is demonstrated in the following video with Leslie Thomas (Microsoft) and and Vesa Juvonen (Microsoft).
Frequently asked questions
When will this happen?
The feature is rolling out currently to Targeted Release customers and will continue to roll out to all customers in June 2024.
This message is associated with Microsoft 365 Roadmap ID 392098.
What do you need to prepare?
There is nothing you need to do to prepare, but you can let your users know about this new experience and provide them insights on the different upcoming options for the spotlight feature.
What is next?
Lot of new features in the roadmap of the Viva Connections. We are working on numerous new features to improve the Viva Connection experience based on the customer and partner feedback. Your feedback and input is invaluable on building these experiences. Got an idea or feedback? – Please add comment below or use the Microsoft Feedback portal.
Thanks for reading. Please enjoy the new configuration options and let us know any feedback or questions in the comments.
Microsoft Tech Community – Latest Blogs –Read More
Windows updates…Grrr!!!
Does Windows not see Matlab when checking to see if it can do an auto-restart to install updates? I read somewhere that Windows makes sure the computer is not busy before automatically restarting, but alas I came in this morning to find my overnight simulation had been aborted due to Windows installing updates!
:'(Does Windows not see Matlab when checking to see if it can do an auto-restart to install updates? I read somewhere that Windows makes sure the computer is not busy before automatically restarting, but alas I came in this morning to find my overnight simulation had been aborted due to Windows installing updates!
:'( Does Windows not see Matlab when checking to see if it can do an auto-restart to install updates? I read somewhere that Windows makes sure the computer is not busy before automatically restarting, but alas I came in this morning to find my overnight simulation had been aborted due to Windows installing updates!
:'( windows sucks! MATLAB Answers — New Questions
finding indexed max values of a matrix using logical array
Hi. Note I have a hard-coded example for this question below you can run to see what I am referring in the question.
To illustrate the problem, I have an m x n matrix G of values. Each row represents a time series of a given repeated measure. I want to get the max values along each row of G and find the (i,j) indexes of the max values of G. Then I want to find the exact time point for where in the time series the max value of G lie for each corresponding row.
My approach was to first make the time series S a repeated matix of the same row values. Then I made a logical mask M = (G == max(G, [],2)). The occurrences of logical ones do correspond to where the max values of G lie, as expected. However when I used the the logical mask M in S to get the time points for the max values of each row using S(M), I get nonsense. I am not sure what I am not understanding or doing wrong.
For instance. The first row max of G is 3 and at index =3 in the time series. Using the S(M) scheme should give "202" but doesn’t. The values for the other rows are all off as well.
Any help with this would be greatly appreciated.
_______________________________________________
UPDATE:
I realized that the scheme is technically working with the problem the values for the sequential rows is not preserved. When I type:
[i,j] = find(G == max(G, [],2)), the row order is weirdly randomized (see code section below of the order of the i values). Does any one know why this would happen? I would need to preserve the sequential order of the row values from 1:9.
S = repmat((200:202), [9,1]); % repeated matrix of consecutive indices
G = [2 1 3
4 8 12
3 4 2
2 1 3
4 8 12
3 4 2
2 1 3
4 8 12
3 4 2]; % matrix of random values
M = (G == max(G, [],2)) % find logical mask of max values along the rows
S(M)
[i,j] = find(G == max(G, [],2))Hi. Note I have a hard-coded example for this question below you can run to see what I am referring in the question.
To illustrate the problem, I have an m x n matrix G of values. Each row represents a time series of a given repeated measure. I want to get the max values along each row of G and find the (i,j) indexes of the max values of G. Then I want to find the exact time point for where in the time series the max value of G lie for each corresponding row.
My approach was to first make the time series S a repeated matix of the same row values. Then I made a logical mask M = (G == max(G, [],2)). The occurrences of logical ones do correspond to where the max values of G lie, as expected. However when I used the the logical mask M in S to get the time points for the max values of each row using S(M), I get nonsense. I am not sure what I am not understanding or doing wrong.
For instance. The first row max of G is 3 and at index =3 in the time series. Using the S(M) scheme should give "202" but doesn’t. The values for the other rows are all off as well.
Any help with this would be greatly appreciated.
_______________________________________________
UPDATE:
I realized that the scheme is technically working with the problem the values for the sequential rows is not preserved. When I type:
[i,j] = find(G == max(G, [],2)), the row order is weirdly randomized (see code section below of the order of the i values). Does any one know why this would happen? I would need to preserve the sequential order of the row values from 1:9.
S = repmat((200:202), [9,1]); % repeated matrix of consecutive indices
G = [2 1 3
4 8 12
3 4 2
2 1 3
4 8 12
3 4 2
2 1 3
4 8 12
3 4 2]; % matrix of random values
M = (G == max(G, [],2)) % find logical mask of max values along the rows
S(M)
[i,j] = find(G == max(G, [],2)) Hi. Note I have a hard-coded example for this question below you can run to see what I am referring in the question.
To illustrate the problem, I have an m x n matrix G of values. Each row represents a time series of a given repeated measure. I want to get the max values along each row of G and find the (i,j) indexes of the max values of G. Then I want to find the exact time point for where in the time series the max value of G lie for each corresponding row.
My approach was to first make the time series S a repeated matix of the same row values. Then I made a logical mask M = (G == max(G, [],2)). The occurrences of logical ones do correspond to where the max values of G lie, as expected. However when I used the the logical mask M in S to get the time points for the max values of each row using S(M), I get nonsense. I am not sure what I am not understanding or doing wrong.
For instance. The first row max of G is 3 and at index =3 in the time series. Using the S(M) scheme should give "202" but doesn’t. The values for the other rows are all off as well.
Any help with this would be greatly appreciated.
_______________________________________________
UPDATE:
I realized that the scheme is technically working with the problem the values for the sequential rows is not preserved. When I type:
[i,j] = find(G == max(G, [],2)), the row order is weirdly randomized (see code section below of the order of the i values). Does any one know why this would happen? I would need to preserve the sequential order of the row values from 1:9.
S = repmat((200:202), [9,1]); % repeated matrix of consecutive indices
G = [2 1 3
4 8 12
3 4 2
2 1 3
4 8 12
3 4 2
2 1 3
4 8 12
3 4 2]; % matrix of random values
M = (G == max(G, [],2)) % find logical mask of max values along the rows
S(M)
[i,j] = find(G == max(G, [],2)) indexing, logical arrays MATLAB Answers — New Questions
Each time maximum number of valid configs changes depending on the pick up point
Hello,
I am trying to generate some valid pick up configurations for a given orientation ( I have 17 different orientations to test) around some points in space with UR5e. I count them as well so that I know the exact number of valid pick up configurations around each point. The thing is, sometimes when I run the simulation for some points, it counts less or more then it did before. So let’s say the result of the first execution for the point A was 16 valid pick up configs around that point, the second time it can be 13 for example instead of 16. Why is this happening ? Should I modify the solver parameters of gik to overcome this ? Because if sometimes it looks like the UR5 can’t reach certain poses but other times it can so it’s not really viable.
Hello,
I am trying to generate valid pick-up configurations for a given orientation with a UR5e robot. I have 17 different orientations to test around specific points in space. For each point, I count the number of valid pick-up configurations to determine the exact number of feasible configurations.
However, I have encountered an inconsistency: the number of valid configurations varies between simulation runs. For instance, for a given point A, the first execution might yield 16 valid configurations, while the second might yield only 13.
Why is this inconsistency happening? Should I modify the solver parameters of the Generalized Inverse Kinematics (GIK) solver to achieve consistent results ? How can I be sure of getting the maximum reachable configurations? Because of this problem, it appears that sometimes the UR5e can reach certain poses, but other times it cannot, which undermines the reliability of the simulations.
Thank you for your assistance.Hello,
I am trying to generate some valid pick up configurations for a given orientation ( I have 17 different orientations to test) around some points in space with UR5e. I count them as well so that I know the exact number of valid pick up configurations around each point. The thing is, sometimes when I run the simulation for some points, it counts less or more then it did before. So let’s say the result of the first execution for the point A was 16 valid pick up configs around that point, the second time it can be 13 for example instead of 16. Why is this happening ? Should I modify the solver parameters of gik to overcome this ? Because if sometimes it looks like the UR5 can’t reach certain poses but other times it can so it’s not really viable.
Hello,
I am trying to generate valid pick-up configurations for a given orientation with a UR5e robot. I have 17 different orientations to test around specific points in space. For each point, I count the number of valid pick-up configurations to determine the exact number of feasible configurations.
However, I have encountered an inconsistency: the number of valid configurations varies between simulation runs. For instance, for a given point A, the first execution might yield 16 valid configurations, while the second might yield only 13.
Why is this inconsistency happening? Should I modify the solver parameters of the Generalized Inverse Kinematics (GIK) solver to achieve consistent results ? How can I be sure of getting the maximum reachable configurations? Because of this problem, it appears that sometimes the UR5e can reach certain poses, but other times it cannot, which undermines the reliability of the simulations.
Thank you for your assistance. Hello,
I am trying to generate some valid pick up configurations for a given orientation ( I have 17 different orientations to test) around some points in space with UR5e. I count them as well so that I know the exact number of valid pick up configurations around each point. The thing is, sometimes when I run the simulation for some points, it counts less or more then it did before. So let’s say the result of the first execution for the point A was 16 valid pick up configs around that point, the second time it can be 13 for example instead of 16. Why is this happening ? Should I modify the solver parameters of gik to overcome this ? Because if sometimes it looks like the UR5 can’t reach certain poses but other times it can so it’s not really viable.
Hello,
I am trying to generate valid pick-up configurations for a given orientation with a UR5e robot. I have 17 different orientations to test around specific points in space. For each point, I count the number of valid pick-up configurations to determine the exact number of feasible configurations.
However, I have encountered an inconsistency: the number of valid configurations varies between simulation runs. For instance, for a given point A, the first execution might yield 16 valid configurations, while the second might yield only 13.
Why is this inconsistency happening? Should I modify the solver parameters of the Generalized Inverse Kinematics (GIK) solver to achieve consistent results ? How can I be sure of getting the maximum reachable configurations? Because of this problem, it appears that sometimes the UR5e can reach certain poses, but other times it cannot, which undermines the reliability of the simulations.
Thank you for your assistance. matlab, inversekinematics MATLAB Answers — New Questions
BLDC/PMSM parametrization based on datasheet
Hello everyone,
I would like to ask regarding parameterization of BLDC/PMSM based on manufacturer’s datasheet. I have a motor datasheet in which interphase-resistance, induction values and number of poles are given? The datasheet is hereby attached. The circled part is my requirement for motor. Could you please guide how to do I calculate:
D&Q Inductance
Torque/BEMF constant or permanent flux linkage
Phase resistance
I believe many manufacturer do not simply provide constant values. Looking forward to hearing from the expert in this field.
Thank you.Hello everyone,
I would like to ask regarding parameterization of BLDC/PMSM based on manufacturer’s datasheet. I have a motor datasheet in which interphase-resistance, induction values and number of poles are given? The datasheet is hereby attached. The circled part is my requirement for motor. Could you please guide how to do I calculate:
D&Q Inductance
Torque/BEMF constant or permanent flux linkage
Phase resistance
I believe many manufacturer do not simply provide constant values. Looking forward to hearing from the expert in this field.
Thank you. Hello everyone,
I would like to ask regarding parameterization of BLDC/PMSM based on manufacturer’s datasheet. I have a motor datasheet in which interphase-resistance, induction values and number of poles are given? The datasheet is hereby attached. The circled part is my requirement for motor. Could you please guide how to do I calculate:
D&Q Inductance
Torque/BEMF constant or permanent flux linkage
Phase resistance
I believe many manufacturer do not simply provide constant values. Looking forward to hearing from the expert in this field.
Thank you. electric_motor_control, pmsm, bldc, motor_parameterization MATLAB Answers — New Questions
How to Fix QuickBooks payroll error 15XXX when downloading payroll after update windows?
Experiencing QuickBooks payroll error 15XXX when downloading payroll? Unable to proceed? Seeking solutions to fix this issue swiftly? Explore troubleshooting tips and resolve this payroll snag effectively to ensure seamless payroll management.
Experiencing QuickBooks payroll error 15XXX when downloading payroll? Unable to proceed? Seeking solutions to fix this issue swiftly? Explore troubleshooting tips and resolve this payroll snag effectively to ensure seamless payroll management. Read More
AC-3 codec (Dolby Digital) no longer available on Windows 11 24H2
When you install Windows 11 24H2 and try to play old media content in the AC-3 codec, Media Player will not open it.
When you install Windows 11 24H2 and try to play old media content in the AC-3 codec, Media Player will not open it. Read More
What troubleshooting steps can resolve QuickBooks Error ps036 after latest update?
Experiencing QuickBooks Error PS036? Can’t process payroll? Need assistance resolving this issue ASAP. Please provide troubleshooting steps to fix this error and ensure smooth payroll processing.
Experiencing QuickBooks Error PS036? Can’t process payroll? Need assistance resolving this issue ASAP. Please provide troubleshooting steps to fix this error and ensure smooth payroll processing. Read More
Conditional formula
Hi,
I have been trying to work out a formula in a conditional formatting.
The formula is to highlight a cell in the two columns which the date is overdue (less than today’s date) ,meanwhile not to highlight when the cell is blank.
very much appreciated if someone could help.
Hi, I have been trying to work out a formula in a conditional formatting.The formula is to highlight a cell in the two columns which the date is overdue (less than today’s date) ,meanwhile not to highlight when the cell is blank. very much appreciated if someone could help. Read More
Copy paste images into planner tasks
Since 2020 we are asking for this function which is more or less a standard feature. Do a screenshot with the snipping tool and copy paste it into a planer task without having to use that attachment button out of the 90es.
Since 2020 we are asking for this function which is more or less a standard feature. Do a screenshot with the snipping tool and copy paste it into a planer task without having to use that attachment button out of the 90es. Read More
Migration azure recourses using azure devops
Hello,
Does any one has any idea how we can migrate azure resources like VM, DB, etc using azure Devop’s. any document or video available for it
regards
Santosh
r
Hello, Does any one has any idea how we can migrate azure resources like VM, DB, etc using azure Devop’s. any document or video available for it regardsSantosh r Read More
Update Channels blocking Customer Copilot 365 Adoption
As part of our ongoing customer engagement, we are currently investigating the adoption of Microsoft Copilot for Microsoft 365 for an organisation. They have some concerns regarding the required update channels and their potential impact on our existing macros and applications.
According to the documentation, Microsoft Copilot for Microsoft 365 adheres to the standard deployment and update practices for Microsoft 365 Apps. It is available in all update channels except for the Semi-Annual Enterprise Channel. Additionally, preview channels—such as Current Channel (Preview) and Beta Channel—fully support Copilot. Production channels encompass Current Channel and Monthly Enterprise Channel.
Our specific concern arises from past experiences where updates from the channels have affected their macros. As they continue to modernise their environment, safeguarding these applications remains a priority. Therefore, we would like to seek clarity on whether the current statement regarding Copilot’s availability in Current Channel and Monthly Enterprise Channel will remain consistent. Furthermore, are there any considerations for organisations with existing macros?
We greatly appreciate any insights or guidance you can provide. Thank you for your assistance!
Thank you!
As part of our ongoing customer engagement, we are currently investigating the adoption of Microsoft Copilot for Microsoft 365 for an organisation. They have some concerns regarding the required update channels and their potential impact on our existing macros and applications.According to the documentation, Microsoft Copilot for Microsoft 365 adheres to the standard deployment and update practices for Microsoft 365 Apps. It is available in all update channels except for the Semi-Annual Enterprise Channel. Additionally, preview channels—such as Current Channel (Preview) and Beta Channel—fully support Copilot. Production channels encompass Current Channel and Monthly Enterprise Channel.Our specific concern arises from past experiences where updates from the channels have affected their macros. As they continue to modernise their environment, safeguarding these applications remains a priority. Therefore, we would like to seek clarity on whether the current statement regarding Copilot’s availability in Current Channel and Monthly Enterprise Channel will remain consistent. Furthermore, are there any considerations for organisations with existing macros?We greatly appreciate any insights or guidance you can provide. Thank you for your assistance!Thank you! Read More
Troubleshooting Tips for QuickBooks Payroll Error 15102
I’m encountering QuickBooks payroll error 15102 and need assistance. Every time I try to download updates, this error message pops up, disrupting my payroll process. How can I resolve this issue quickly to ensure my payroll is up to date and accurate?
I’m encountering QuickBooks payroll error 15102 and need assistance. Every time I try to download updates, this error message pops up, disrupting my payroll process. How can I resolve this issue quickly to ensure my payroll is up to date and accurate? Read More
Expert Tips for Resolving QuickBooks Payroll Error 15240 Effectively
I’m facing a QuickBooks Payroll Error 15240 and need assistance. My payroll processing has been halted due to this issue, and I’m unsure how to resolve it. What could be causing this error, and what steps should I take to fix it? I need a solution urgently to ensure my payroll runs smoothly again.
I’m facing a QuickBooks Payroll Error 15240 and need assistance. My payroll processing has been halted due to this issue, and I’m unsure how to resolve it. What could be causing this error, and what steps should I take to fix it? I need a solution urgently to ensure my payroll runs smoothly again. Read More
The best way to convert ogg to mp3 on Windows 11 without losing quality?
My car player only supports mp3 files and I have hundreds of ogg music files ripped from old CD. I tried the built-in Windows Media Player but it does not have a MP3 export option though there is no problem to play the ogg music. What is the best program I can use to convert ogg to mp3 without losing quality on Windows 11.
My car player only supports mp3 files and I have hundreds of ogg music files ripped from old CD. I tried the built-in Windows Media Player but it does not have a MP3 export option though there is no problem to play the ogg music. What is the best program I can use to convert ogg to mp3 without losing quality on Windows 11. Read More
Final few iterations of a parfor loop slow down by a factor of 10
I have a regular for loop which calls a function 44 times. Each iteration takes about 32 seconds to execute in this ordinary for loop. If I use a parfor loop instead, each iteration takes about 8 seconds. However, the final 2 iterations take 10 times as long, 75 and 82 seconds. For example, iteration 22 took 15 seconds in an ordinary for loop, and 75 seconds in the parfor loop, because it happened to be executed as the last iteration. This problem only occurs with the final couple of iterations, never in the middle of the rest of the computation. It occurs with differing datasets. Again, those same iterations , if run in a regular for loop, do not take an inordinate amount of time.
I have preallocated the variables, and don’t use global variables.
What is going on? How can I avoid this?I have a regular for loop which calls a function 44 times. Each iteration takes about 32 seconds to execute in this ordinary for loop. If I use a parfor loop instead, each iteration takes about 8 seconds. However, the final 2 iterations take 10 times as long, 75 and 82 seconds. For example, iteration 22 took 15 seconds in an ordinary for loop, and 75 seconds in the parfor loop, because it happened to be executed as the last iteration. This problem only occurs with the final couple of iterations, never in the middle of the rest of the computation. It occurs with differing datasets. Again, those same iterations , if run in a regular for loop, do not take an inordinate amount of time.
I have preallocated the variables, and don’t use global variables.
What is going on? How can I avoid this? I have a regular for loop which calls a function 44 times. Each iteration takes about 32 seconds to execute in this ordinary for loop. If I use a parfor loop instead, each iteration takes about 8 seconds. However, the final 2 iterations take 10 times as long, 75 and 82 seconds. For example, iteration 22 took 15 seconds in an ordinary for loop, and 75 seconds in the parfor loop, because it happened to be executed as the last iteration. This problem only occurs with the final couple of iterations, never in the middle of the rest of the computation. It occurs with differing datasets. Again, those same iterations , if run in a regular for loop, do not take an inordinate amount of time.
I have preallocated the variables, and don’t use global variables.
What is going on? How can I avoid this? parfor, slow MATLAB Answers — New Questions
Unequal, custom, non-evenly spaced colorbar intervals
I have a colorbar ranging from -1000 to 4000 with intervals of 500 throughout. How would I change the colorbar to display intervals so they were spaced 250 from -1000 to 1000, and had an interval of 1000 from 1000 to 4000?I have a colorbar ranging from -1000 to 4000 with intervals of 500 throughout. How would I change the colorbar to display intervals so they were spaced 250 from -1000 to 1000, and had an interval of 1000 from 1000 to 4000? I have a colorbar ranging from -1000 to 4000 with intervals of 500 throughout. How would I change the colorbar to display intervals so they were spaced 250 from -1000 to 1000, and had an interval of 1000 from 1000 to 4000? colorbar MATLAB Answers — New Questions
Why is My QuickBooks Payroll will not Update windows 11?
Why won’t my QuickBooks Payroll update? I’ve tried restarting my computer and checking my internet connection, but the updates still fail. What steps can I take to troubleshoot and resolve this issue?
Why won’t my QuickBooks Payroll update? I’ve tried restarting my computer and checking my internet connection, but the updates still fail. What steps can I take to troubleshoot and resolve this issue? Read More
How to Fix QuickBooks payroll update error windows 10?
How can I resolve the QuickBooks payroll update error that prevents me from updating payroll information? I’m unable to process payroll due to this issue. What troubleshooting steps should I follow to fix it?
How can I resolve the QuickBooks payroll update error that prevents me from updating payroll information? I’m unable to process payroll due to this issue. What troubleshooting steps should I follow to fix it? Read More