Month: August 2024
The Layout.ini File is Missing from My Prefetch Folder
Hello, I’ve observed that the layout.ini file is no longer present in the windowsprefetch directory and it is not being generated even when using the “Rundll32.exe advapi32.dll,ProcessIdleTasks” command. This change might be due to relocating the collection folders from C:/ SSD to D:/HDD. Thank you.
Hello, I’ve observed that the layout.ini file is no longer present in the windowsprefetch directory and it is not being generated even when using the “Rundll32.exe advapi32.dll,ProcessIdleTasks” command. This change might be due to relocating the collection folders from C:/ SSD to D:/HDD. Thank you. Read More
How to List Details of Teams Apps
A question asked about filtering Teams apps based on their blocked status. The Teams admin center doesn’t support this kind of filter and getting details of Teams apps is surprisingly difficult. For instance, you can’t get a list of the 2,500+ apps shown in the Teams admin center. PowerShell cmdlets are available to list Teams apps, but they focus on apps known to a tenant rather than the entire catalog.
https://office365itpros.com/2024/08/08/teams-apps-report/
A question asked about filtering Teams apps based on their blocked status. The Teams admin center doesn’t support this kind of filter and getting details of Teams apps is surprisingly difficult. For instance, you can’t get a list of the 2,500+ apps shown in the Teams admin center. PowerShell cmdlets are available to list Teams apps, but they focus on apps known to a tenant rather than the entire catalog.
https://office365itpros.com/2024/08/08/teams-apps-report/ Read More
Appropriate Data Store
Hi all,
I am an ex-sql server dba now getting my hands dirty again and building a new system. I have been using azure sql which is working absolutely fine for the small datasets however I will be importing some timeseries data – I’ve imported around 77 million records a month. Azure SQL seems to be ok when appropriately indexed but when I imported the data into a Azure Synapse Dedicated SQL Pool it seemed much faster out of the box. This is a relatively expensive solution though and Big Query probably offers a similar experience for cheaper (as claimed by google).
I haven’t seen much information online around Azure Synapse Dedicated SQL Pools so I’m wondering if that is an area microsoft is pushing in the future or if there a better alternative within Azure.
I want to continue to query the data via sql which i can with Azure Synapse Dedicated SQL Pools and also Big Query,
Any advice please?
Hi all, I am an ex-sql server dba now getting my hands dirty again and building a new system. I have been using azure sql which is working absolutely fine for the small datasets however I will be importing some timeseries data – I’ve imported around 77 million records a month. Azure SQL seems to be ok when appropriately indexed but when I imported the data into a Azure Synapse Dedicated SQL Pool it seemed much faster out of the box. This is a relatively expensive solution though and Big Query probably offers a similar experience for cheaper (as claimed by google). I haven’t seen much information online around Azure Synapse Dedicated SQL Pools so I’m wondering if that is an area microsoft is pushing in the future or if there a better alternative within Azure.I want to continue to query the data via sql which i can with Azure Synapse Dedicated SQL Pools and also Big Query,Any advice please? Read More
How can I use the iswt2 from the wavelet toolbox with a different dwtmode?
The iswt2 is the inverse function of the swt2. In the swt2 the dwtmode is set to:
modeDWT = ‘per’;
I want to customize the swt2 to extend images in a symmetric manner, so changed the code to:
modeDWT = ‘sym’;
Unfortunately, I have not found an explicit parameter to consider the dwtmode in the iswt2. Is there a way to modify the iswt2 in this respect?The iswt2 is the inverse function of the swt2. In the swt2 the dwtmode is set to:
modeDWT = ‘per’;
I want to customize the swt2 to extend images in a symmetric manner, so changed the code to:
modeDWT = ‘sym’;
Unfortunately, I have not found an explicit parameter to consider the dwtmode in the iswt2. Is there a way to modify the iswt2 in this respect? The iswt2 is the inverse function of the swt2. In the swt2 the dwtmode is set to:
modeDWT = ‘per’;
I want to customize the swt2 to extend images in a symmetric manner, so changed the code to:
modeDWT = ‘sym’;
Unfortunately, I have not found an explicit parameter to consider the dwtmode in the iswt2. Is there a way to modify the iswt2 in this respect? wavelet, signal processing, image processing MATLAB Answers — New Questions
solution for steady flow at Re = 10. in coursera i took mathematics for engineers.for that i need to solve an assignment. For this code i cant get correct stream & vorticity
flow_around_cylinder_steady
function [psi, omega] = flow_around_cylinder_steady
Re=10;
%%%%% define the grid %%%%%
n=101; m=101; % number of grid points
N=n-1; M=m-1; % number of grid intervals
h=pi/M; % grid spacing based on theta variable
xi=(0:N)*h; theta=(0:M)*h; % xi and theta variables on the grid
%%%%% Initialize the flow fields %%%%%
psi=zeros(n,m);
omega=zeros(n,m);
psi(n,:)=0 % Free stream boundary condition (psi = 0 at the top edge)
%%%%% Set relax params, tol, extra variables %%%%%
r_psi=1.8; % Set the relaxation parameter here, psi equation
r_omega=0.9; % Set the relaxation parameter here, omega equation
delta=1.e-08; % error tolerance
error=2*delta; % initialize error variable
%%%%% Add any additional variable definitions here %%%%%
…
…
%%%%% Main SOR Loop %%%%%
while (error > delta)
psi_old = psi; omega_old = omega;
for i=2:n-1
for j=2:m-1
psi(i,j)=… % (1 – r_psi) * psi_old(i, j) + …
r_psi * 0.5 * (psi_old(i+1, j) + psi_old(i-1, j) + …
psi_old(i, j+1) + psi_old(i, j-1) – h^2 * omega(i, j));
end
end
error_psi=max(abs(psi(:)-psi_old(:)));
omega(1,:)=0 % Boundary condition at theta = 0
for i=2:n-1
for j=2:m-1
omega(i,j)=… % (1 – r_omega) * omega_old(i, j) + …
r_omega * ( (omega_old(i+1, j) + omega_old(i-1, j) + …
omega_old(i, j+1) + omega_old(i, j-1) – …
(4 – (2/h^2)) * omega_old(i, j)) / (4 – (2/h^2)) );
end
end
error_omega=max(abs(omega(:)-omega_old(:)));
error=max(error_psi, error_omega);
end
plot_Re10(psi);
end
Please refer to page 59 (64/69) of the PDF document for the ‘plot_Re10’ custom plotting function.
https://www.math.hkust.edu.hk/~machas/flow-around-a-cylinder.pdfflow_around_cylinder_steady
function [psi, omega] = flow_around_cylinder_steady
Re=10;
%%%%% define the grid %%%%%
n=101; m=101; % number of grid points
N=n-1; M=m-1; % number of grid intervals
h=pi/M; % grid spacing based on theta variable
xi=(0:N)*h; theta=(0:M)*h; % xi and theta variables on the grid
%%%%% Initialize the flow fields %%%%%
psi=zeros(n,m);
omega=zeros(n,m);
psi(n,:)=0 % Free stream boundary condition (psi = 0 at the top edge)
%%%%% Set relax params, tol, extra variables %%%%%
r_psi=1.8; % Set the relaxation parameter here, psi equation
r_omega=0.9; % Set the relaxation parameter here, omega equation
delta=1.e-08; % error tolerance
error=2*delta; % initialize error variable
%%%%% Add any additional variable definitions here %%%%%
…
…
%%%%% Main SOR Loop %%%%%
while (error > delta)
psi_old = psi; omega_old = omega;
for i=2:n-1
for j=2:m-1
psi(i,j)=… % (1 – r_psi) * psi_old(i, j) + …
r_psi * 0.5 * (psi_old(i+1, j) + psi_old(i-1, j) + …
psi_old(i, j+1) + psi_old(i, j-1) – h^2 * omega(i, j));
end
end
error_psi=max(abs(psi(:)-psi_old(:)));
omega(1,:)=0 % Boundary condition at theta = 0
for i=2:n-1
for j=2:m-1
omega(i,j)=… % (1 – r_omega) * omega_old(i, j) + …
r_omega * ( (omega_old(i+1, j) + omega_old(i-1, j) + …
omega_old(i, j+1) + omega_old(i, j-1) – …
(4 – (2/h^2)) * omega_old(i, j)) / (4 – (2/h^2)) );
end
end
error_omega=max(abs(omega(:)-omega_old(:)));
error=max(error_psi, error_omega);
end
plot_Re10(psi);
end
Please refer to page 59 (64/69) of the PDF document for the ‘plot_Re10’ custom plotting function.
https://www.math.hkust.edu.hk/~machas/flow-around-a-cylinder.pdf flow_around_cylinder_steady
function [psi, omega] = flow_around_cylinder_steady
Re=10;
%%%%% define the grid %%%%%
n=101; m=101; % number of grid points
N=n-1; M=m-1; % number of grid intervals
h=pi/M; % grid spacing based on theta variable
xi=(0:N)*h; theta=(0:M)*h; % xi and theta variables on the grid
%%%%% Initialize the flow fields %%%%%
psi=zeros(n,m);
omega=zeros(n,m);
psi(n,:)=0 % Free stream boundary condition (psi = 0 at the top edge)
%%%%% Set relax params, tol, extra variables %%%%%
r_psi=1.8; % Set the relaxation parameter here, psi equation
r_omega=0.9; % Set the relaxation parameter here, omega equation
delta=1.e-08; % error tolerance
error=2*delta; % initialize error variable
%%%%% Add any additional variable definitions here %%%%%
…
…
%%%%% Main SOR Loop %%%%%
while (error > delta)
psi_old = psi; omega_old = omega;
for i=2:n-1
for j=2:m-1
psi(i,j)=… % (1 – r_psi) * psi_old(i, j) + …
r_psi * 0.5 * (psi_old(i+1, j) + psi_old(i-1, j) + …
psi_old(i, j+1) + psi_old(i, j-1) – h^2 * omega(i, j));
end
end
error_psi=max(abs(psi(:)-psi_old(:)));
omega(1,:)=0 % Boundary condition at theta = 0
for i=2:n-1
for j=2:m-1
omega(i,j)=… % (1 – r_omega) * omega_old(i, j) + …
r_omega * ( (omega_old(i+1, j) + omega_old(i-1, j) + …
omega_old(i, j+1) + omega_old(i, j-1) – …
(4 – (2/h^2)) * omega_old(i, j)) / (4 – (2/h^2)) );
end
end
error_omega=max(abs(omega(:)-omega_old(:)));
error=max(error_psi, error_omega);
end
plot_Re10(psi);
end
Please refer to page 59 (64/69) of the PDF document for the ‘plot_Re10’ custom plotting function.
https://www.math.hkust.edu.hk/~machas/flow-around-a-cylinder.pdf matlab, steady flow MATLAB Answers — New Questions
How to change .txt format automatically into .m format
Dear all:
I have a lot of .txt files which I want to change them automatically into .m format files, in order for some later processing in Matlab.
Any guide will be very appreciated.Dear all:
I have a lot of .txt files which I want to change them automatically into .m format files, in order for some later processing in Matlab.
Any guide will be very appreciated. Dear all:
I have a lot of .txt files which I want to change them automatically into .m format files, in order for some later processing in Matlab.
Any guide will be very appreciated. txt, m, format, function, convert, change, text, m file, txt file MATLAB Answers — New Questions
dealing with and / (windows vs. unix) for path definition.
Hi everybody,
Simple question, let’s say I’m using mac osx and some colleagues use windows… and I have to share a matlab script. Problem, this script needs to look in folder to load data files or print figures:
load ./data/data.mat
plot(data(:,1),data(:,2))
print -dpdf ./graph/figure.pdf
this is how it is written on unix system, but on windows I have to replace all the / by
load .datadata.mat
…
Is there a way to deal with that or the only way to make it works on both systems is to add a conditional statement like
if isunix
load ./data/data.mat
else
load .datadata.mat
end
thanks for any help,
cheers
PieterHi everybody,
Simple question, let’s say I’m using mac osx and some colleagues use windows… and I have to share a matlab script. Problem, this script needs to look in folder to load data files or print figures:
load ./data/data.mat
plot(data(:,1),data(:,2))
print -dpdf ./graph/figure.pdf
this is how it is written on unix system, but on windows I have to replace all the / by
load .datadata.mat
…
Is there a way to deal with that or the only way to make it works on both systems is to add a conditional statement like
if isunix
load ./data/data.mat
else
load .datadata.mat
end
thanks for any help,
cheers
Pieter Hi everybody,
Simple question, let’s say I’m using mac osx and some colleagues use windows… and I have to share a matlab script. Problem, this script needs to look in folder to load data files or print figures:
load ./data/data.mat
plot(data(:,1),data(:,2))
print -dpdf ./graph/figure.pdf
this is how it is written on unix system, but on windows I have to replace all the / by
load .datadata.mat
…
Is there a way to deal with that or the only way to make it works on both systems is to add a conditional statement like
if isunix
load ./data/data.mat
else
load .datadata.mat
end
thanks for any help,
cheers
Pieter unix windows path dir MATLAB Answers — New Questions
Normal Distribution of the CDF Error Function Plotting
What command do I need to enter to plot:
f(z) = 794.5 (1 + erf((x – 97.69760856)/(25.85046741√2)))What command do I need to enter to plot:
f(z) = 794.5 (1 + erf((x – 97.69760856)/(25.85046741√2))) What command do I need to enter to plot:
f(z) = 794.5 (1 + erf((x – 97.69760856)/(25.85046741√2))) error function MATLAB Answers — New Questions
Hi. Community
My secondary email email address removed for privacy reasons cannot be accessed. Please provide method to sign in. Would be very grateful.
Actually I don’t have 4 email addresses which can be input for recovery as well as subject lines.
Looking forward to hear from you!
My secondary email email address removed for privacy reasons cannot be accessed. Please provide method to sign in. Would be very grateful. Actually I don’t have 4 email addresses which can be input for recovery as well as subject lines. Looking forward to hear from you! Read More
How to add-in feature Open files on One Drive with other application
Hi Team
I am developing an electronic signature application. We now want to integrate it with OneDrive, and the concept is outlined below:
Users utilize OneDrive to manage their documents. They should be able to right-click or select multiple files and then choose “Open with other application,” which should support opening and navigating to my application. (You can refer to the SignNow application with Google Drive for an example.)
Based on my research, I need to follow these steps to achieve the idea:
Publish the application to appsource of microsoftUsers can install the add-in on OneDrive to use it as a feature for opening files with other applications
I am not entirely sure about our research or which steps need to be taken to achieve the goal. It would be helpful if you could assist me in verifying the following:
The necessary steps to be taken
Whether it is possible to implement the add-in feature to open files with other applications
Thank you so much
Hi TeamI am developing an electronic signature application. We now want to integrate it with OneDrive, and the concept is outlined below:Users utilize OneDrive to manage their documents. They should be able to right-click or select multiple files and then choose “Open with other application,” which should support opening and navigating to my application. (You can refer to the SignNow application with Google Drive for an example.)Based on my research, I need to follow these steps to achieve the idea:Publish the application to appsource of microsoftUsers can install the add-in on OneDrive to use it as a feature for opening files with other applicationsI am not entirely sure about our research or which steps need to be taken to achieve the goal. It would be helpful if you could assist me in verifying the following:The necessary steps to be takenWhether it is possible to implement the add-in feature to open files with other applicationsThank you so much Read More
How to create Catalina boot USB installer on Windows PC?
I’m a technical writer and web designer, so I have a good handle on software and tools. However, I’m more familiar with macOS environments and usually work with a MacBook M1. I recently ran into a situation where I need to reinstall macOS Catalina on an older Mac, but I only have access to a Windows machine right now.
Can anyone provide a step-by-step guide or point me to reliable resources for creating Catalina boot USB installer on Windows? The official createinstallmedia command does not work on Windows PC!
I’m a technical writer and web designer, so I have a good handle on software and tools. However, I’m more familiar with macOS environments and usually work with a MacBook M1. I recently ran into a situation where I need to reinstall macOS Catalina on an older Mac, but I only have access to a Windows machine right now. Can anyone provide a step-by-step guide or point me to reliable resources for creating Catalina boot USB installer on Windows? The official createinstallmedia command does not work on Windows PC! Read More
Microsoft Azure Backup Server
I have an instance of SQL 2022 on Windows Server 2022 where I want to backup via Microsoft Azure Backup Server; it sees the vm and disks but does not see the SQL instance (error attached)
I have an instance of SQL 2022 on Windows Server 2022 where I want to backup via Microsoft Azure Backup Server; it sees the vm and disks but does not see the SQL instance (error attached) Read More
Super fast creating react app with Microsoft Entra on Azure Web app
TOC
Steps
References
Steps:
Create an App registration in Microsoft Entra.
After creation, note down the Application (client) ID and Directory (tenant) ID, which will be used later.
Create a Linux web app in Azure Portal and use Node.js.
After creation, note down the App Name, which will be used later.
Download the sample code in your development environment:
git clone https://github.com/Azure-Samples/ms-identity-docs-code-javascript.git
You can use VS Code to open the react-spa subfolder.
Edit src/authConfig.js and make the corresponding modifications:
clientId
Specify the Application (client) ID obtained in step 2
authority
Fill in the Directory (tenant) ID obtained in step 2 in the specified format. (https://login.microsoftonline.com/<TENANT_ID>)
redirectUri
Fill in the App Name obtained in step 4 in the specified format. (https://<APP_NAME>.azurewebsites.net/.auth/login/aad/callback)
Run the following command to install the relevant packages:
npm install
Run the following command to compile the project. After execution, a build subfolder will be created.
npm run build
Create or modify build/.deployment with the following content:
[config]
SCM_DO_BUILD_DURING_DEPLOYMENT=false
Publish your project, specifying the build subfolder during the publishing process.
After publishing, go back to the App registration in Microsoft Entra, find Authentication, create a Platform, specify Single-Page Application, and fill in the value of authority from Step 7.
Go back to the project, navigate to Configuration, and specify the Startup Command as follows:
pm2 serve /home/site/wwwroot –no-daemon –spa
After restarting the web app, you can visit your webpage using a browser.
References:
Quickstart: Sign in to a SPA & call an API – React – Microsoft identity platform | Microsoft Learn
Microsoft Tech Community – Latest Blogs –Read More
Enhancing Microsoft Build with MVP Insights and Excitement
It’s hard to believe, but it has already been two and a half months since this year’s Microsoft Build, where we highlighted the contributions of Microsoft MVPs in various roles in blog post Microsoft Build 2024 with MVP Communities – Microsoft Community Hub. Some people have taken the initiative to test new AI features themselves, while others have relied on community content to understand the latest technological advancements and consider how to apply them to their own businesses.
MVPs have been actively catching up with the newly announced information, writing blog posts and sharing insights on social media. They added a layer of excitement to the official releases by delivering valuable information to the community in their own words.
Microsoft Build 2024 Watch Party in the heart of New York City, United States
Peter Smulovics, a Developer Technologies MVP, hosted the Microsoft Build 2024 Watch Party in the heart of New York City, where community members gathered to deepen their knowledge together by watching the live conference.
This event allowed attendees to experience the excitement of watching the keynote address from Microsoft Build and learn about the latest announcements. They also enjoyed networking opportunities and engaged in many conversations about the newly unveiled technologies.
For those who couldn’t attend Microsoft Build in person, a Watch Party like this offers the chance to share in the spirit and excitement of this milestone event, but also connect with other tech enthusiasts locally… Check out Peter’s blog post Watching Microsoft Build in Good Company | Dotneteers.net for a recap of the event.
Microsoft Build: Developer Learning Day in London, the United Kingdom
Microsoft Build: Developer Learning Day was co-hosted with NVIDIA with over 300 attendees. The focus of the event was to share post-Build insights and viewpoints from the community and Microsoft employees.
Participants had the opportunity to deepen their knowledge of Dev Tools, Cloud Platform, AI Development, Copilot, and Azure Data & Analytics through technical sessions. Four out of the five sessions were co-presented by MVPs including Sue Bayes, Callum Whyte, Daniel Roe, and Alpa Buddhabhatti. Additionally, in the Lab space, there were two 60-minute Lab sessions offering practical learning experiences on Deep Learning and Transformer-Based Natural Language Processing. Furthermore, at the Ask the Expert Booth, MVPs interacted with participants and engaged in discussions based on their expertise.
Read the event recap posted on LinkedIn by Marcel Lupo, a Developer Technologies and Microsoft Azure MVP, who was one of the experts at the Ask the Expert Booth, here.
2024 Microsoft Build After Party & Microsoft Build 2024 – After Party with MVP in Seoul, Korea
At the Microsoft Korea office in Seoul, Korean MVPs hosted two community-led post-Build events over two days, helping enthusiastic participants learn about the latest AI technologies to enhance their knowledge.
On the first day, at the 2024 Microsoft Build After Party, five MVP/RDs shared insights on the latest Azure AI technologies with over 100 attendees through hands-on sessions, and panel discussions. They covered Copilot Studios, multi-modal generative artificial intelligence, responsible AI, low-code development, and cloud platform. On the second day, the Microsoft Build 2024 – After Party with MVP featured diverse speakers, including Microsoft Learn Student Ambassadors and community leaders, who provided new insights on emerging technologies, such as Power Platform and Microsoft 365, to the participants.
One of the MVP hosts of the Microsoft Build 2024 After Party with MVP, Inhee Lee, expressed what they were able to convey to the participants through this event, “we shared insights of the benefit of GenAI which is a disruption and democratisation of conventional technology. Anybody can access to utilise technology easily with affordable costs.”
Post Microsoft Build and AI Day in Shanghai, Beijing, and Greater Bay Area (Shenzhen and Hong Kong)
In collaboration with Microsoft Asia and Microsoft Reactor, and 16 technology communities, the Post-Microsoft Build and AI Day event series was held in June 2024. The three events in Shanghai, Beijing, and the Greater Bay Area (Shenzhen and Hong Kong) attracted significant interest from those eager to learn about the latest AI solutions. Over 400 participants attended the events in person, and online streaming reached more than 140,000 viewers.
This series of hybrid events offered opportunities to learn about the latest technology topics announced at Microsoft Build, including Azure AI, .NET, Copilot, Power Platform, Azure OpenAI, LLM, SLM, Data Analytics and Integration, and edge computing. 11 MVPs participated as speakers, providing technical insights and engaging in discussions with attendees at the booths, enhancing the event experience for both in-person and online participants.
The event in Shanghai coincided with Children’s Day, leading to a special “Hour of Code · Children’s Day Edition.” Hao Hu, an AI Platform MVP, conducted an AI hands-on workshop themed around marine conservation for children. This initiative demonstrated how AI can be utilized across different generations.
Microsoft Build Japan 2024 – Virtual event from Tokyo, Japan
As an opportunity for Japanese-speaking users to learn the latest technologies announced at Microsoft Build, Microsoft Japan held Microsoft Build Japan 2024. Eight MVPs contributed to this two-day virtual event as speakers. On Day 1, four MVPs shared important updates on Azure AI and developer-focused topics. On Day 2, another four MVPs covered Microsoft 365, including Copilot, as well as the latest devices such as Copilot+ PC and Surface.
Tomokazu Kizawa participated as a speaker at a Microsoft-hosted event for the first time. Reflecting on his experience and the key messages he wanted to convey to the participants, he shared his thoughts: “From my perspective as a user outside of Microsoft, I focused on specifically conveying how new technologies like Copilot+ PC can positively impact daily life and work. Additionally, I aimed to highlight the positioning of Surface and the technological trends of Copilot+ PC not only from Microsoft’s standpoint but also within the broader PC industry, in order to generate more interest in Windows Devices.”
You can watch the session videos from this event, including the presentations by the Microsoft MVPs, at the following link.
Microsoft Build Japan 2024 – YouTube
– MVP session Day 1: Microsoft MVP による “推し最新技術情報” Azure/AI + Dev 編 (youtube.com)
– MVP session Day 2: Microsoft MVP による “推し最新技術情報” Microsoft 365 + Windows Device 編 (youtube.com)
Starting November 19, another major Microsoft global conference, Microsoft Ignite, is set to take place both in Chicago and online. It’s exciting to think about the innovative technology announcements that will be revealed in just three months. If you’d like to stay updated on the latest conference information, we recommend signing up for email notifications via the [Join the email list] link on the official page (note: this is not for event registration).
Also, be sure to look forward to learning opportunities provided by the Microsoft MVP community during and after the Microsoft Ignite event!
——
To learn more about Microsoft Build, please visit the following websites.
Microsoft Build (Official website)
Microsoft Build 2024 Book of News (Announcements)
Build on Microsoft Learn (Microsoft Learn)
Microsoft Build 2024 (Playlist on Microsoft Developer YouTube)
The top 5 Microsoft MVP demos presented at this year’s event are now available on the Microsoft Developer YouTube channel.
– Extend your Copilot with plugins using Copilot Studio by M365 MVP Manpreet Singh
– Create a fully functional support bot in less than 10 minutes by Business Applications MVP Em D’Arcy
– Golden path with GitHub Actions by Microsoft Azure MVP/Regional Director Michel Hubert
– Optimize Azure Infrastructure as Code Deployments with VS Code by Windows and Devices, Microsoft Azure MVP
– AI-Powered Personalized Learning by AI Platform MVP Noelle Russell
Microsoft Tech Community – Latest Blogs –Read More
Appdesigner: Remove Simulink dependency
Hi everybody,
I have accidentaly added a Simulink component to my app and now I cannot compile it anymore.
I have the MATLAB compiler but not the Simulink compiler, to overcome the problem I have removed the simulink component but the dependency is still there, hence the appdesigner does not allow me to compile the app.
Is there any trick that I can use to fix this problem?
Best regards,
GiulioHi everybody,
I have accidentaly added a Simulink component to my app and now I cannot compile it anymore.
I have the MATLAB compiler but not the Simulink compiler, to overcome the problem I have removed the simulink component but the dependency is still there, hence the appdesigner does not allow me to compile the app.
Is there any trick that I can use to fix this problem?
Best regards,
Giulio Hi everybody,
I have accidentaly added a Simulink component to my app and now I cannot compile it anymore.
I have the MATLAB compiler but not the Simulink compiler, to overcome the problem I have removed the simulink component but the dependency is still there, hence the appdesigner does not allow me to compile the app.
Is there any trick that I can use to fix this problem?
Best regards,
Giulio appdesigner, compiler, dependency MATLAB Answers — New Questions
Anova-N output question
Hello community!
The closest prompt I could find that is similar to this would be: https://www.mathworks.com/matlabcentral/answers/1876737-anova-n-outputs-as-not-full-rank-returns-nan-p-value?s_tid=sug_su , but the reason their’s showed NaN was there was not enough values. For mine I have 5.4 thousand entries, so I’m not sure that is the problem.
To reduce clutter of the code, I am going to attach the .mat files and the one-line of code.
pTHalf = anovan(stats(:,1), {Patho CellLine MW},’model’,’interaction’,’varnames’, …
{‘Pathology’,’Cell Line’,’Molecular Weights’});
I ensured the data is of the same types allowed within the format of the Anova-n overview page. The only thing that I could think of was that there are more than two groups within the Cell Line and Molecular Weights groupings, but the only one that worked was the molecular weights, so I also doubt that is the reason.
This is the output below. Why do I have missing sections associated with a ‘not full rank’. I do not see anything on the anova-N page that discusses this.
Thanks community!
NickHello community!
The closest prompt I could find that is similar to this would be: https://www.mathworks.com/matlabcentral/answers/1876737-anova-n-outputs-as-not-full-rank-returns-nan-p-value?s_tid=sug_su , but the reason their’s showed NaN was there was not enough values. For mine I have 5.4 thousand entries, so I’m not sure that is the problem.
To reduce clutter of the code, I am going to attach the .mat files and the one-line of code.
pTHalf = anovan(stats(:,1), {Patho CellLine MW},’model’,’interaction’,’varnames’, …
{‘Pathology’,’Cell Line’,’Molecular Weights’});
I ensured the data is of the same types allowed within the format of the Anova-n overview page. The only thing that I could think of was that there are more than two groups within the Cell Line and Molecular Weights groupings, but the only one that worked was the molecular weights, so I also doubt that is the reason.
This is the output below. Why do I have missing sections associated with a ‘not full rank’. I do not see anything on the anova-N page that discusses this.
Thanks community!
Nick Hello community!
The closest prompt I could find that is similar to this would be: https://www.mathworks.com/matlabcentral/answers/1876737-anova-n-outputs-as-not-full-rank-returns-nan-p-value?s_tid=sug_su , but the reason their’s showed NaN was there was not enough values. For mine I have 5.4 thousand entries, so I’m not sure that is the problem.
To reduce clutter of the code, I am going to attach the .mat files and the one-line of code.
pTHalf = anovan(stats(:,1), {Patho CellLine MW},’model’,’interaction’,’varnames’, …
{‘Pathology’,’Cell Line’,’Molecular Weights’});
I ensured the data is of the same types allowed within the format of the Anova-n overview page. The only thing that I could think of was that there are more than two groups within the Cell Line and Molecular Weights groupings, but the only one that worked was the molecular weights, so I also doubt that is the reason.
This is the output below. Why do I have missing sections associated with a ‘not full rank’. I do not see anything on the anova-N page that discusses this.
Thanks community!
Nick anova-n, matlab, documentation MATLAB Answers — New Questions
Facing error in this example openExample(‘whdl/WHDLOFDMTransmitterExample’)
>>
openExample(‘whdl/WHDLOFDMTransmitterExample’)
runOFDMTransmitterModel
Error using runOFDMTransmitterModel>trBlkSize
Too many output arguments.
Error in runOFDMTransmitterModel (line 26)
trBlkSize(txParam(n).modOrder,txParam(n).codeRateIndex)*txParam(n).numFrames,…Error using runOFDMTransmitterModel>trBlkSizeToo many output arguments.Error in runOFDMTransmitterModel (line 26) trBlkSize(txParam(n).modOrder,txParam(n).codeRateIndex)*txParam(n).numFrames,…
I am gretting this error before I was not getting . can you help me.>>
openExample(‘whdl/WHDLOFDMTransmitterExample’)
runOFDMTransmitterModel
Error using runOFDMTransmitterModel>trBlkSize
Too many output arguments.
Error in runOFDMTransmitterModel (line 26)
trBlkSize(txParam(n).modOrder,txParam(n).codeRateIndex)*txParam(n).numFrames,…Error using runOFDMTransmitterModel>trBlkSizeToo many output arguments.Error in runOFDMTransmitterModel (line 26) trBlkSize(txParam(n).modOrder,txParam(n).codeRateIndex)*txParam(n).numFrames,…
I am gretting this error before I was not getting . can you help me. >>
openExample(‘whdl/WHDLOFDMTransmitterExample’)
runOFDMTransmitterModel
Error using runOFDMTransmitterModel>trBlkSize
Too many output arguments.
Error in runOFDMTransmitterModel (line 26)
trBlkSize(txParam(n).modOrder,txParam(n).codeRateIndex)*txParam(n).numFrames,…Error using runOFDMTransmitterModel>trBlkSizeToo many output arguments.Error in runOFDMTransmitterModel (line 26) trBlkSize(txParam(n).modOrder,txParam(n).codeRateIndex)*txParam(n).numFrames,…
I am gretting this error before I was not getting . can you help me. #matlab#hdl MATLAB Answers — New Questions
Bear tool box and input excel
While I am using the Bear toolbox to run time varying parameter model. I am bit confused how can I make my excel sheet to be recognized by the bear app. I import my own excel sheet that I used to collect data and every time I click a run button it says something like exo mean priors not found or something similar to this. I assume there is an excel sheet format that I am supposed to use in bear toolbox but I cannot really find it anywhere. Can anyone help me out?
For your reference: https://www.ecb.europa.eu/press/research-publications/working-papers/html/BEAR_toolbox_v5_1.pdf –> the slide 22 talks about input excel data file but I am confused.While I am using the Bear toolbox to run time varying parameter model. I am bit confused how can I make my excel sheet to be recognized by the bear app. I import my own excel sheet that I used to collect data and every time I click a run button it says something like exo mean priors not found or something similar to this. I assume there is an excel sheet format that I am supposed to use in bear toolbox but I cannot really find it anywhere. Can anyone help me out?
For your reference: https://www.ecb.europa.eu/press/research-publications/working-papers/html/BEAR_toolbox_v5_1.pdf –> the slide 22 talks about input excel data file but I am confused. While I am using the Bear toolbox to run time varying parameter model. I am bit confused how can I make my excel sheet to be recognized by the bear app. I import my own excel sheet that I used to collect data and every time I click a run button it says something like exo mean priors not found or something similar to this. I assume there is an excel sheet format that I am supposed to use in bear toolbox but I cannot really find it anywhere. Can anyone help me out?
For your reference: https://www.ecb.europa.eu/press/research-publications/working-papers/html/BEAR_toolbox_v5_1.pdf –> the slide 22 talks about input excel data file but I am confused. bear toolbox, ecb, excel sheet MATLAB Answers — New Questions
$filter by multiple properties
Hi all,
Unfortunately, I can’t manage to filter according to several properties.
I’m currently filtering for a specific value, but I would like to filter using one or two “or” operators or other properties:
$filter=assignmentState+eq+’Delivered’
e.g.:
filter where assignmentstate is ‘Delivered’ or ‘Delivering‘ or ‘etc..’
When I follow the documentation I run into errors.
https://learn.microsoft.com/de-de/graph/filter-query-parameter?tabs=http
Does anyone have experience with multiple filters?
Regards
Hi all, Unfortunately, I can’t manage to filter according to several properties. I’m currently filtering for a specific value, but I would like to filter using one or two “or” operators or other properties: $filter=assignmentState+eq+’Delivered’ e.g.:filter where assignmentstate is ‘Delivered’ or ‘Delivering’ or ‘etc..’ When I follow the documentation I run into errors.https://learn.microsoft.com/de-de/graph/filter-query-parameter?tabs=http Does anyone have experience with multiple filters? Regards Read More
Trouble adding Personal Calendar to Work Calendar, Both MS 365 accounts
I am an accountant with my own company and have a long-term contracting relationship with another company. In addition to my own company’s MS365 account, the other company has issued me an MS365 account for my work on their behalf. The client is implementing Bookings to allow clients to self-book my services and assistance. This requires Bookings to receive information from both MS365 calendars to accurately convey my availability.
Both companies use Microsoft 365 for software services. When I try to add the calendar from the other company as a personal calendar, I receive an error message. I can add it as a shared calendar, but Bookings doesn’t consider the availability of the shared calendar. It also doesn’t work when I try to set up a shared Booking page and add the other email as staff.
I can’t imagine I am the first person to need this integration. Please let me know what you suggest.
I am an accountant with my own company and have a long-term contracting relationship with another company. In addition to my own company’s MS365 account, the other company has issued me an MS365 account for my work on their behalf. The client is implementing Bookings to allow clients to self-book my services and assistance. This requires Bookings to receive information from both MS365 calendars to accurately convey my availability. Both companies use Microsoft 365 for software services. When I try to add the calendar from the other company as a personal calendar, I receive an error message. I can add it as a shared calendar, but Bookings doesn’t consider the availability of the shared calendar. It also doesn’t work when I try to set up a shared Booking page and add the other email as staff. I can’t imagine I am the first person to need this integration. Please let me know what you suggest. Read More