Category: News
How to Resolve View My Paycheck Not Working After Update in Q.B
After a recent update, the “View My Paycheck” feature in Quick-Books stopped working. Employees are no longer able to access their paychecks online. What steps can I take to fix this issue?
After a recent update, the “View My Paycheck” feature in Quick-Books stopped working. Employees are no longer able to access their paychecks online. What steps can I take to fix this issue? Read More
How to Migrate Data from Quick-Books Online to Quick-Books Desktop on Windows 11
I’m looking to migrate my data from QBO to Q.B Desktop, and I’m using Windows 11. Can you provide step-by-step instructions or recommend any reliable services that can assist with this process?
I’m looking to migrate my data from QBO to Q.B Desktop, and I’m using Windows 11. Can you provide step-by-step instructions or recommend any reliable services that can assist with this process? Read More
How to write StateFcn in Nonlinear MPC Controller
Nowdays, I am doing some works about visual servoing. But there are some troubles with the nonlinear MPC Controller. I have read the example named ‘Control Quadruple-Tank Using Passivity-Based Nonlinear MPC’. There is a code nlobj.Model.StateFcn = "stateFcnQuadrupleTank".
I opened it, and the content shows as a picture as follows. It looks like the example uses code to express the dynamic system. I want to know if I can use a Simulink model, which is already done, to replace the code.
Thank a lot for your help!Nowdays, I am doing some works about visual servoing. But there are some troubles with the nonlinear MPC Controller. I have read the example named ‘Control Quadruple-Tank Using Passivity-Based Nonlinear MPC’. There is a code nlobj.Model.StateFcn = "stateFcnQuadrupleTank".
I opened it, and the content shows as a picture as follows. It looks like the example uses code to express the dynamic system. I want to know if I can use a Simulink model, which is already done, to replace the code.
Thank a lot for your help! Nowdays, I am doing some works about visual servoing. But there are some troubles with the nonlinear MPC Controller. I have read the example named ‘Control Quadruple-Tank Using Passivity-Based Nonlinear MPC’. There is a code nlobj.Model.StateFcn = "stateFcnQuadrupleTank".
I opened it, and the content shows as a picture as follows. It looks like the example uses code to express the dynamic system. I want to know if I can use a Simulink model, which is already done, to replace the code.
Thank a lot for your help! mpc, ibvs MATLAB Answers — New Questions
Is this a correct way to use fsolve?
Since fsolve keeps giving me answers with a very small but non-zero imaginary part, which i really don’t want, I though about giving the derivative of my function. Is this a correct way to do it? Also, is there a way to tell the function not to go outside the reale line?
%g is a function that is defined by an equation. I know that is invertible
%and takes values between 0 and kappa.
function g = g(y, z, p, kappa, beta, mu, muz, sigma, sigmaz)
K = (mu^2/sigma^2)*0.5;
M = (sigmaz*mu)/sigma;
q = 1/(p-1);
alpha = (sqrt((beta-M-K)^2+4*K*(beta-muz))-beta+M+K)/(2*K);
C = beta-K*p/(1-p);
%function whose zero i need to find (with respect to w)
F = @(w) ((1-p)/C)*(kappa^q – w^q)+y+z-z*(w/kappa)^(alpha-1);
%its derivative with respect to w
J = @(w) ((1-p)/C)*(-q*(w^(q-1))) -z*((alpha-1)*w^(alpha-2))/(kappa^(alpha-1));
options = optimoptions(‘fsolve’, ‘SpecifyObjectiveGradient’, true);
fun = {F, J};
w0 = kappa/2;
g = fsolve(fun, w0, options);
endSince fsolve keeps giving me answers with a very small but non-zero imaginary part, which i really don’t want, I though about giving the derivative of my function. Is this a correct way to do it? Also, is there a way to tell the function not to go outside the reale line?
%g is a function that is defined by an equation. I know that is invertible
%and takes values between 0 and kappa.
function g = g(y, z, p, kappa, beta, mu, muz, sigma, sigmaz)
K = (mu^2/sigma^2)*0.5;
M = (sigmaz*mu)/sigma;
q = 1/(p-1);
alpha = (sqrt((beta-M-K)^2+4*K*(beta-muz))-beta+M+K)/(2*K);
C = beta-K*p/(1-p);
%function whose zero i need to find (with respect to w)
F = @(w) ((1-p)/C)*(kappa^q – w^q)+y+z-z*(w/kappa)^(alpha-1);
%its derivative with respect to w
J = @(w) ((1-p)/C)*(-q*(w^(q-1))) -z*((alpha-1)*w^(alpha-2))/(kappa^(alpha-1));
options = optimoptions(‘fsolve’, ‘SpecifyObjectiveGradient’, true);
fun = {F, J};
w0 = kappa/2;
g = fsolve(fun, w0, options);
end Since fsolve keeps giving me answers with a very small but non-zero imaginary part, which i really don’t want, I though about giving the derivative of my function. Is this a correct way to do it? Also, is there a way to tell the function not to go outside the reale line?
%g is a function that is defined by an equation. I know that is invertible
%and takes values between 0 and kappa.
function g = g(y, z, p, kappa, beta, mu, muz, sigma, sigmaz)
K = (mu^2/sigma^2)*0.5;
M = (sigmaz*mu)/sigma;
q = 1/(p-1);
alpha = (sqrt((beta-M-K)^2+4*K*(beta-muz))-beta+M+K)/(2*K);
C = beta-K*p/(1-p);
%function whose zero i need to find (with respect to w)
F = @(w) ((1-p)/C)*(kappa^q – w^q)+y+z-z*(w/kappa)^(alpha-1);
%its derivative with respect to w
J = @(w) ((1-p)/C)*(-q*(w^(q-1))) -z*((alpha-1)*w^(alpha-2))/(kappa^(alpha-1));
options = optimoptions(‘fsolve’, ‘SpecifyObjectiveGradient’, true);
fun = {F, J};
w0 = kappa/2;
g = fsolve(fun, w0, options);
end fsolve, complex values, jacobian MATLAB Answers — New Questions
How chromosome in Genetic Algorithms Toolbox works in detailed
Hello,
I need answers about constitution of the chromosomes, their length, coding of chromosome in detail, crossover and mutation process. Generally, how it works in detailed Maybe on example or code please. In GA toolbox documentation does not specify how the GA determines the length of the chromosome and encodes variable???
Thanks
RadekHello,
I need answers about constitution of the chromosomes, their length, coding of chromosome in detail, crossover and mutation process. Generally, how it works in detailed Maybe on example or code please. In GA toolbox documentation does not specify how the GA determines the length of the chromosome and encodes variable???
Thanks
Radek Hello,
I need answers about constitution of the chromosomes, their length, coding of chromosome in detail, crossover and mutation process. Generally, how it works in detailed Maybe on example or code please. In GA toolbox documentation does not specify how the GA determines the length of the chromosome and encodes variable???
Thanks
Radek genetic algorithm, chromosome MATLAB Answers — New Questions
Error Message
When trying to print worksheet in onedrive error message as follows when selecting secind print label:-
This content is blocked. Contact the site owner to fix the issue.
Can someone please offer a solution ?
When trying to print worksheet in onedrive error message as follows when selecting secind print label:-This content is blocked. Contact the site owner to fix the issue.Can someone please offer a solution ? Read More
How can I make a bootable usb macos installer on Windows PC?
I’m in a sticky situation and would love some help. My Mac suddenly stopped booting and I suspect there might be something wrong with the system files. Now I want to make a bootable USB macOS installer on another Windows PC I have to reinstall the system. The problem is that I don’t quite know how to make a bootable disk of macOS on a Windows system.
I looked for some methods and tools online, but I couldn’t find a clear and reliable guide. If anyone knows the specific steps or has used reliable tools, please let me know, I really need help! Thank you everyone!
I’m in a sticky situation and would love some help. My Mac suddenly stopped booting and I suspect there might be something wrong with the system files. Now I want to make a bootable USB macOS installer on another Windows PC I have to reinstall the system. The problem is that I don’t quite know how to make a bootable disk of macOS on a Windows system. I looked for some methods and tools online, but I couldn’t find a clear and reliable guide. If anyone knows the specific steps or has used reliable tools, please let me know, I really need help! Thank you everyone! Read More
Use Azure Screenshot for my thesis
Dear Microsoft Team,
In my bachelor’s thesis, I plan to implement a BI process and would like to use screenshots from the development environments of Microsoft Fabric, Azure Data Factory, Azure Data Lake Storage Gen2, Azure Synapse Analytics, and PowerBI. Therefore, I would like to ask if I am allowed to use these types of screenshots in my thesis free of charge.
Best regards
Dear Microsoft Team,In my bachelor’s thesis, I plan to implement a BI process and would like to use screenshots from the development environments of Microsoft Fabric, Azure Data Factory, Azure Data Lake Storage Gen2, Azure Synapse Analytics, and PowerBI. Therefore, I would like to ask if I am allowed to use these types of screenshots in my thesis free of charge.Best regards Read More
How can I resolve QuickBook Error OL 306 when connecting to my bank for transactions?
I am encountering QuickBook Error OL-306 when trying to update my bank transactions. This error message is preventing me from downloading the latest transactions. Could you provide some troubleshooting steps to resolve this issue?
I am encountering QuickBook Error OL-306 when trying to update my bank transactions. This error message is preventing me from downloading the latest transactions. Could you provide some troubleshooting steps to resolve this issue? Read More
How do I, report GlowRoad?
To file a, complaint with GlowRoad, you can contact their customer support team at,0*9641,493-383 and provide them with all the necessary details related to your complain.
To file a, complaint with GlowRoad, you can contact their customer support team at,0*9641,493-383 and provide them with all the necessary details related to your complain. Read More
What causes QuickBook Error OL-205, and how can it be resolved?
I’ve been encountering QuickBook Error OL-205 when trying to update my bank account transactions. This error message is preventing me from accessing my latest bank data. Could you provide some troubleshooting steps to resolve this issue?
I’ve been encountering QuickBook Error OL-205 when trying to update my bank account transactions. This error message is preventing me from accessing my latest bank data. Could you provide some troubleshooting steps to resolve this issue? Read More
Looking for the best Windows password recovery USB tool, any suggestions?
Hello everyone! I’m in trouble now. I forgot my computer login password and I need to find a good Windows password recovery USB tool. I hope to make a bootable USB to reset or recover the password, but there is too much information on the Internet and it feels confusing. I don’t know which tool is safe and effective. If you have used a reliable password recovery tool, can you recommend it? Thank you very much for your help!
Hello everyone! I’m in trouble now. I forgot my computer login password and I need to find a good Windows password recovery USB tool. I hope to make a bootable USB to reset or recover the password, but there is too much information on the Internet and it feels confusing. I don’t know which tool is safe and effective. If you have used a reliable password recovery tool, can you recommend it? Thank you very much for your help! Read More
No matter what settings I changed, my laptop still goes to sleep after a short while :(
I have an older Asus Zenbook (UX331U), upgraded to Win 11 (I bought it used, with the upgrade already done).
Its driving me nuts that, no matter what settings I tried, both inside Windows, even some registry tweaks, and a full reinstall/repair, it still goes to sleep after 30 minutes or so. I use this particular laptop to stream TV series/movies onto the Smart TV (thru Plex) and its very annoying when the laptop goes to sleep, pausing the movie.
I’ve tried also using other programs to keep it from going to sleep, like PowerToys, also using a torrenting program that was set to prevent sleep, but none of these things made a difference, I’m starting to think this laptop is possessed, to annoy me
The only thing I have not tried to do is put Win 10 on it, that would be like a last resort that I’m trying to avoid doing, but I’m thinking to, just to see if the behavior would be gone on Win 10 or not. I already have, and even older Asus Zenbook, with Win10 on it, and on that one the behavior I wanted, preventing sleep thru settings to be able to stream from it, was never and issue, it would turn off only when running out of juice, or never if plugged in and if I, for example had Utorrent running and downloading/seeding something on it.
What sort of logs/events could I extract here to be able to understand the reasons behind?
I have an older Asus Zenbook (UX331U), upgraded to Win 11 (I bought it used, with the upgrade already done). Its driving me nuts that, no matter what settings I tried, both inside Windows, even some registry tweaks, and a full reinstall/repair, it still goes to sleep after 30 minutes or so. I use this particular laptop to stream TV series/movies onto the Smart TV (thru Plex) and its very annoying when the laptop goes to sleep, pausing the movie.I’ve tried also using other programs to keep it from going to sleep, like PowerToys, also using a torrenting program that was set to prevent sleep, but none of these things made a difference, I’m starting to think this laptop is possessed, to annoy me The only thing I have not tried to do is put Win 10 on it, that would be like a last resort that I’m trying to avoid doing, but I’m thinking to, just to see if the behavior would be gone on Win 10 or not. I already have, and even older Asus Zenbook, with Win10 on it, and on that one the behavior I wanted, preventing sleep thru settings to be able to stream from it, was never and issue, it would turn off only when running out of juice, or never if plugged in and if I, for example had Utorrent running and downloading/seeding something on it.What sort of logs/events could I extract here to be able to understand the reasons behind? Read More
“Your organization’s policies do not allow you to share with these users” error when sharing an item
Hi,
I have a OneDrive folder that contains multiple subfolders. Each of these subfolders needs to be shared to different people and I would like those people to be able to share those folders as well without me having to add each new email address myself.
A person to whom I shared “folder A” with tried to share it with an external email address and got the following error:
“Your organization’s policies do not allow you to share with these users” error when sharing an item or site in SharePoint Online or OneDrive for Business”
I followed the steps provided in here but my organisation external sharing parameters were already set to “Anyone” as seen below. Does this mean that people in the organisation can not share folders that require a log in?
Thank you in advance for the help.
Pedro
Hi, I have a OneDrive folder that contains multiple subfolders. Each of these subfolders needs to be shared to different people and I would like those people to be able to share those folders as well without me having to add each new email address myself. A person to whom I shared “folder A” with tried to share it with an external email address and got the following error: “Your organization’s policies do not allow you to share with these users” error when sharing an item or site in SharePoint Online or OneDrive for Business” I followed the steps provided in here but my organisation external sharing parameters were already set to “Anyone” as seen below. Does this mean that people in the organisation can not share folders that require a log in? Thank you in advance for the help. Pedro Read More
Co-pilot for MS 365 in China
hi , can I use Co-pilot for MS 365 in China or can I use it in remote desktop?
hi , can I use Co-pilot for MS 365 in China or can I use it in remote desktop? Read More
Introducing Agent and Gateway Extensions in Azure Monitor SCOM MI
We are thrilled to announce the General Availability (GA) of Agent and Gateway Server Extensions in Azure Monitor SCOM MI, a new capability that allows you to initiate monitoring on Azure and Arc enabled Windows machines at-scale and programmatically. More about this capability at Monitor Azure and Off-Azure Virtual machines.
Key benefits and capabilities
Extensions for Agents and Gateways offer the following benefits:
Monitor workloads everywhere: SCOM MI can monitor VMs and guest applications that are hosted on Azure or off-Azure using Arc channel. With Managed Gateways, you can monitor air-gapped & isolated VMs.
At-scale deployment: Users can enable monitoring of VMs at-scale through Azure portal or scripts (PS), enhancing operational efficiency.
Transition at your pace: With multi-homing support, you have the flexibility to transition your monitoring from SCOM on-prem to Azure Monitor SCOM MI at your own pace.
Secure and latest by default: SCOM MI agents use Managed identities and Certificate authentication which is a significant upgrade from legacy Kerberos auth. Agents are always up to date automatically, eliminating the need for you to handle frequent updates.
With the above capabilities, we are moving towards making Azure Monitor SCOM MI easier to operate. In Public Preview, 20+ customers deployed 1200+ agents and their feedback has helped simplify experiences further.
How does it look like
Here are few screenshots of onboarding and managing monitored VMs using the extensions:
What’s next
As we expect more SCOM customers transitioning their monitoring to SCOM MI, we aim to make that process seamless through the following capabilities:
More at-scale onboarding experiences: Onboard monitoring agents at-scale via ARM template, Azure policies and Azure Automation catering to varied entry points.
Scheduled updates: Provide flexibility to schedule agent updates as per Org’s change management process.
What are you waiting for?
We are excited to see how you will use the extensions to monitor your Azure and Arc enabled machines. Here are some resources to help you get started: Monitor Azure and Off-Azure Virtual machines with Azure Monitor SCOM MI extensions
For any questions, comments, feedback, please reach out to: systemcenterfeedback@microsoft.com.
Thank you for your continued support and feedback.
Azure Monitor SCOM MI Team
Microsoft Tech Community – Latest Blogs –Read More
Complete list of all warnings the function mkdir may throw
The function mkdir may return a warning. Is there somewhere a complete list of all the warnings this function may throw?The function mkdir may return a warning. Is there somewhere a complete list of all the warnings this function may throw? The function mkdir may return a warning. Is there somewhere a complete list of all the warnings this function may throw? matlab function MATLAB Answers — New Questions
How to show latex by override `disp` in classdef?
classdef Myclass
properties
R;
end
methods
function obj = PointGroupElement(R)
obj.R = R;
end
function disp(obj)
symMatrixStr = symmatrix(‘R(1/3,[0,0,1])’);
disp(symMatrixStr);
end
end
end
When I run this class in live editor, I expect return or show latex form R(1/3,[0,0,1]) rather that str ‘R(1/3,[0,0,1])’, and i also know, it will return latex form when i run symMatrixStr = symmatrix(‘R(1/3,[0,0,1])’) in live editor. So, what should i do to override disp so that the class outputs the latex form?classdef Myclass
properties
R;
end
methods
function obj = PointGroupElement(R)
obj.R = R;
end
function disp(obj)
symMatrixStr = symmatrix(‘R(1/3,[0,0,1])’);
disp(symMatrixStr);
end
end
end
When I run this class in live editor, I expect return or show latex form R(1/3,[0,0,1]) rather that str ‘R(1/3,[0,0,1])’, and i also know, it will return latex form when i run symMatrixStr = symmatrix(‘R(1/3,[0,0,1])’) in live editor. So, what should i do to override disp so that the class outputs the latex form? classdef Myclass
properties
R;
end
methods
function obj = PointGroupElement(R)
obj.R = R;
end
function disp(obj)
symMatrixStr = symmatrix(‘R(1/3,[0,0,1])’);
disp(symMatrixStr);
end
end
end
When I run this class in live editor, I expect return or show latex form R(1/3,[0,0,1]) rather that str ‘R(1/3,[0,0,1])’, and i also know, it will return latex form when i run symMatrixStr = symmatrix(‘R(1/3,[0,0,1])’) in live editor. So, what should i do to override disp so that the class outputs the latex form? latex, display, class MATLAB Answers — New Questions
Model Advisor Configuration Editor for Simulink Checks refuses to save the configuration
Hello,
I am currently trying to fix a json configuration file for Model Advisor on R2023a version.
When I load the json configuration file, the editor says that "there are sone issues in the selected configuration file. Do you want to Auto-fix?"
For sure, I answer "Yes, please fix it". The Editor does its job and displays a Validation summary with some checks which are updated and some other checks which are deleted.
OK let’s go on.
But in the Model Adivor tab, there are still some chekcs which are invalid although they appeared as updated in the "Validation Summary" previous window ! WTF ?
Don’t worry, the editor proposes to fix it again, so let’s fix it again !
OK now there is no more checks marked as incorrect, I can save my updated configuration file now…
Damned, when I try to save it, the editor says "There are sone issues in the selected configuration file. please validate the configuration before saving".
It would have been fine if the editor could tell me which issues does problem but I guess it is too much for MATLAB.
And unfortunately the "Validate" icon is greyed and I can not trigger the validation. So I can not update my configuration file, what a pity !
Does someone know how to proceed for the upgrade of my configurarion file ?
thank you for your attention.Hello,
I am currently trying to fix a json configuration file for Model Advisor on R2023a version.
When I load the json configuration file, the editor says that "there are sone issues in the selected configuration file. Do you want to Auto-fix?"
For sure, I answer "Yes, please fix it". The Editor does its job and displays a Validation summary with some checks which are updated and some other checks which are deleted.
OK let’s go on.
But in the Model Adivor tab, there are still some chekcs which are invalid although they appeared as updated in the "Validation Summary" previous window ! WTF ?
Don’t worry, the editor proposes to fix it again, so let’s fix it again !
OK now there is no more checks marked as incorrect, I can save my updated configuration file now…
Damned, when I try to save it, the editor says "There are sone issues in the selected configuration file. please validate the configuration before saving".
It would have been fine if the editor could tell me which issues does problem but I guess it is too much for MATLAB.
And unfortunately the "Validate" icon is greyed and I can not trigger the validation. So I can not update my configuration file, what a pity !
Does someone know how to proceed for the upgrade of my configurarion file ?
thank you for your attention. Hello,
I am currently trying to fix a json configuration file for Model Advisor on R2023a version.
When I load the json configuration file, the editor says that "there are sone issues in the selected configuration file. Do you want to Auto-fix?"
For sure, I answer "Yes, please fix it". The Editor does its job and displays a Validation summary with some checks which are updated and some other checks which are deleted.
OK let’s go on.
But in the Model Adivor tab, there are still some chekcs which are invalid although they appeared as updated in the "Validation Summary" previous window ! WTF ?
Don’t worry, the editor proposes to fix it again, so let’s fix it again !
OK now there is no more checks marked as incorrect, I can save my updated configuration file now…
Damned, when I try to save it, the editor says "There are sone issues in the selected configuration file. please validate the configuration before saving".
It would have been fine if the editor could tell me which issues does problem but I guess it is too much for MATLAB.
And unfortunately the "Validate" icon is greyed and I can not trigger the validation. So I can not update my configuration file, what a pity !
Does someone know how to proceed for the upgrade of my configurarion file ?
thank you for your attention. simulink checks, model advisor MATLAB Answers — New Questions
How can I fix Quick.Books Error OL 301 when updating my bank accounts?
I’m encountering Quick.Books Error OL 301 when trying to connect my bank account. It displays an error message indicating a connection issue with my financial institution. How can I resolve this issue and ensure my banking transactions sync properly with Quick.Books?
I’m encountering Quick.Books Error OL 301 when trying to connect my bank account. It displays an error message indicating a connection issue with my financial institution. How can I resolve this issue and ensure my banking transactions sync properly with Quick.Books? Read More