Month: September 2024
Why do I get a blank SSO screen when attempting to sign in to MATLAB at start up?
I was able to install MATLAB, however I am not able to sign into my MathWorks Account with my university credentials when trying to launch MATLAB for the first time.
When I input my email address it says I must log in through my school’s portal, but nothing pops up except a blank white page in my shortcut.
I was able to install MATLAB, however I am not able to sign into my MathWorks Account with my university credentials when trying to launch MATLAB for the first time.
When I input my email address it says I must log in through my school’s portal, but nothing pops up except a blank white page in my shortcut.
I was able to install MATLAB, however I am not able to sign into my MathWorks Account with my university credentials when trying to launch MATLAB for the first time.
When I input my email address it says I must log in through my school’s portal, but nothing pops up except a blank white page in my shortcut.
MATLAB Answers — New Questions
Determine the direction of travelling waves in Fourier Analysis
% I am conducting a FFT analysis and i I observed that there is travelling
% wave. Please, how do I determine the direction of the travelling waves?
% Compute the phase of the FFT: theta_phase = angle(Ytheta);
% Compute the mean phase difference: p = polyfit(f, theta_phase, 1);
% slope = p(1); % The slope of the phase vs. frequency plot
% Store the mean phase difference: mean_phase_diff(i) = slope;
% Then I test the mean_phase_diff(i) > 0 implies rightward direction or if
% mean_phase_diff(i) < 0 leftward direction. I am wondering if there is a
% better way or function to do this.
clear
%close all
pars.W = 20e-6;
pars.D = 2e-6;
% time discretisation – start, step and end
t = 0:0.025:5;
% Extract theta data
loaded_data = load(‘thetam.mat’);
thetam = loaded_data.thetam;
% Sample frequency
Fs = 1/(t(2) – t(1));
% Number of samples
L = length(t);
% Number of ramp slopes
num_ramp_slopes = size(thetam, 1);
% Frequency vector for FFT
f = (-L/2 : L/2-1) * (Fs / L);
% Loop through each ramp_slope
for i = 1:num_ramp_slopes
% Extract the theta data for the current ramp_slope
theta_data = thetam(i, :);
% Compute the FFT of the theta data
Ytheta = fft(theta_data);
% Shift zero frequency component to center
Ytheta = fftshift(Ytheta);
end
% Plot the magnitude of the FFT for the first ramp_slope
fig1 = figure;
plot(f, abs(fftshift(fft(thetam(1, :)))), ‘LineWidth’, 0.8);
xlabel(‘Frequency (Hz)’);
ylabel(‘Magnitude’);
title(‘FFT Magnitude for Ramp Slope 1’);
xlim([-Fs/2 Fs/2]);
grid on;% I am conducting a FFT analysis and i I observed that there is travelling
% wave. Please, how do I determine the direction of the travelling waves?
% Compute the phase of the FFT: theta_phase = angle(Ytheta);
% Compute the mean phase difference: p = polyfit(f, theta_phase, 1);
% slope = p(1); % The slope of the phase vs. frequency plot
% Store the mean phase difference: mean_phase_diff(i) = slope;
% Then I test the mean_phase_diff(i) > 0 implies rightward direction or if
% mean_phase_diff(i) < 0 leftward direction. I am wondering if there is a
% better way or function to do this.
clear
%close all
pars.W = 20e-6;
pars.D = 2e-6;
% time discretisation – start, step and end
t = 0:0.025:5;
% Extract theta data
loaded_data = load(‘thetam.mat’);
thetam = loaded_data.thetam;
% Sample frequency
Fs = 1/(t(2) – t(1));
% Number of samples
L = length(t);
% Number of ramp slopes
num_ramp_slopes = size(thetam, 1);
% Frequency vector for FFT
f = (-L/2 : L/2-1) * (Fs / L);
% Loop through each ramp_slope
for i = 1:num_ramp_slopes
% Extract the theta data for the current ramp_slope
theta_data = thetam(i, :);
% Compute the FFT of the theta data
Ytheta = fft(theta_data);
% Shift zero frequency component to center
Ytheta = fftshift(Ytheta);
end
% Plot the magnitude of the FFT for the first ramp_slope
fig1 = figure;
plot(f, abs(fftshift(fft(thetam(1, :)))), ‘LineWidth’, 0.8);
xlabel(‘Frequency (Hz)’);
ylabel(‘Magnitude’);
title(‘FFT Magnitude for Ramp Slope 1’);
xlim([-Fs/2 Fs/2]);
grid on; % I am conducting a FFT analysis and i I observed that there is travelling
% wave. Please, how do I determine the direction of the travelling waves?
% Compute the phase of the FFT: theta_phase = angle(Ytheta);
% Compute the mean phase difference: p = polyfit(f, theta_phase, 1);
% slope = p(1); % The slope of the phase vs. frequency plot
% Store the mean phase difference: mean_phase_diff(i) = slope;
% Then I test the mean_phase_diff(i) > 0 implies rightward direction or if
% mean_phase_diff(i) < 0 leftward direction. I am wondering if there is a
% better way or function to do this.
clear
%close all
pars.W = 20e-6;
pars.D = 2e-6;
% time discretisation – start, step and end
t = 0:0.025:5;
% Extract theta data
loaded_data = load(‘thetam.mat’);
thetam = loaded_data.thetam;
% Sample frequency
Fs = 1/(t(2) – t(1));
% Number of samples
L = length(t);
% Number of ramp slopes
num_ramp_slopes = size(thetam, 1);
% Frequency vector for FFT
f = (-L/2 : L/2-1) * (Fs / L);
% Loop through each ramp_slope
for i = 1:num_ramp_slopes
% Extract the theta data for the current ramp_slope
theta_data = thetam(i, :);
% Compute the FFT of the theta data
Ytheta = fft(theta_data);
% Shift zero frequency component to center
Ytheta = fftshift(Ytheta);
end
% Plot the magnitude of the FFT for the first ramp_slope
fig1 = figure;
plot(f, abs(fftshift(fft(thetam(1, :)))), ‘LineWidth’, 0.8);
xlabel(‘Frequency (Hz)’);
ylabel(‘Magnitude’);
title(‘FFT Magnitude for Ramp Slope 1’);
xlim([-Fs/2 Fs/2]);
grid on; wave direction, fourier series, fft MATLAB Answers — New Questions
how can I take Dynamic Voltage Restorer Block from library browser in matlab simulink ?
I am searching the Dynamic Voltage Restorer (DVR) block in library browser but I am not getting the block.please provide me the steps to find out the DVR block from library browser in matlab simulink.I am searching the Dynamic Voltage Restorer (DVR) block in library browser but I am not getting the block.please provide me the steps to find out the DVR block from library browser in matlab simulink. I am searching the Dynamic Voltage Restorer (DVR) block in library browser but I am not getting the block.please provide me the steps to find out the DVR block from library browser in matlab simulink. dvr MATLAB Answers — New Questions
How do I find my windows 11 product key?
I recently needed to find my Windows 11 product key because I wanted to reinstall the system, but I didn’t know where to find Windows 11 product key. I’ve seen some tutorials before, but the operation was a bit complicated and I didn’t know the specific steps. Does anyone have any simple methods or tools that can help me quickly find the Windows 11 product key? If anyone has encountered a similar problem, please share your experience, thank you!
I recently needed to find my Windows 11 product key because I wanted to reinstall the system, but I didn’t know where to find Windows 11 product key. I’ve seen some tutorials before, but the operation was a bit complicated and I didn’t know the specific steps. Does anyone have any simple methods or tools that can help me quickly find the Windows 11 product key? If anyone has encountered a similar problem, please share your experience, thank you! Read More
Is a complete wipe really necessary?
Insider build expiring very soon, but updates constantly fail to install, is a complete wipe really necessary?
Insider build expiring very soon, but updates constantly fail to install, is a complete wipe really necessary? Read More
I can’t exit Windows Insider Program
What should i do if I can’t exit Windows Insider Program?
What should i do if I can’t exit Windows Insider Program? Read More
how to fuse two png images with equal tranparency and with proper positioning in the final image?
Hello there,
I need to mix two pictures in a way so that one is placed over the other. But both should have equal transparency. Also the location of the first picture over the second should be determinable. is there any way we can do this using imfuse or any other function in MATLAB? whenevr I use this script one gets faded and is located in one of the corners which are not desirable. Can we fix this?Hello there,
I need to mix two pictures in a way so that one is placed over the other. But both should have equal transparency. Also the location of the first picture over the second should be determinable. is there any way we can do this using imfuse or any other function in MATLAB? whenevr I use this script one gets faded and is located in one of the corners which are not desirable. Can we fix this? Hello there,
I need to mix two pictures in a way so that one is placed over the other. But both should have equal transparency. Also the location of the first picture over the second should be determinable. is there any way we can do this using imfuse or any other function in MATLAB? whenevr I use this script one gets faded and is located in one of the corners which are not desirable. Can we fix this? imfuse, transparency, blend MATLAB Answers — New Questions
How to obtain the State Transition Matrix from Simscape Multibody model?
I need to include the Dynamic of the robot I’m using, imported from an URDF file, to a Extended Kalman Filter as the State Transition Function in order to estimate the states of the system. I tried to put all the simscape model inside a Simulink Function, but it brings Error1 saying I can’t put the solver configuration block (from the robot’s body tree) inside a subsystem. I came back and also tried taking the solver configuration block out of the Simulink Function and brin it in using a Connection Port, but it sends now Error2 saying all the elements of the body tree must be in the same level.
Error1: "’brazo_2dof/Simulink Function/Solver Configuration’ has been placed in the function call subsystem ‘brazo_2dof/Simulink Function’ but does not support this configuration. Move the block out of the function call subsystem."
Error2: "Connections of the Physical Network cross nonvirtual boundaries. If any blocks in a Physical Network are within a nonvirtual subsystem, then all blocks of that network must be in the same nonvirtual subsystem. Either move affected blocks out of the nonvirtual subsystem, move network blocks into exactly one nonvirtual subsystem, or reconfigure affected nonvirtual subsystems to be virtual subsystems."
How else could I include the dynamics of my system, imported from the URDF, as the StateTransitionFunction?I need to include the Dynamic of the robot I’m using, imported from an URDF file, to a Extended Kalman Filter as the State Transition Function in order to estimate the states of the system. I tried to put all the simscape model inside a Simulink Function, but it brings Error1 saying I can’t put the solver configuration block (from the robot’s body tree) inside a subsystem. I came back and also tried taking the solver configuration block out of the Simulink Function and brin it in using a Connection Port, but it sends now Error2 saying all the elements of the body tree must be in the same level.
Error1: "’brazo_2dof/Simulink Function/Solver Configuration’ has been placed in the function call subsystem ‘brazo_2dof/Simulink Function’ but does not support this configuration. Move the block out of the function call subsystem."
Error2: "Connections of the Physical Network cross nonvirtual boundaries. If any blocks in a Physical Network are within a nonvirtual subsystem, then all blocks of that network must be in the same nonvirtual subsystem. Either move affected blocks out of the nonvirtual subsystem, move network blocks into exactly one nonvirtual subsystem, or reconfigure affected nonvirtual subsystems to be virtual subsystems."
How else could I include the dynamics of my system, imported from the URDF, as the StateTransitionFunction? I need to include the Dynamic of the robot I’m using, imported from an URDF file, to a Extended Kalman Filter as the State Transition Function in order to estimate the states of the system. I tried to put all the simscape model inside a Simulink Function, but it brings Error1 saying I can’t put the solver configuration block (from the robot’s body tree) inside a subsystem. I came back and also tried taking the solver configuration block out of the Simulink Function and brin it in using a Connection Port, but it sends now Error2 saying all the elements of the body tree must be in the same level.
Error1: "’brazo_2dof/Simulink Function/Solver Configuration’ has been placed in the function call subsystem ‘brazo_2dof/Simulink Function’ but does not support this configuration. Move the block out of the function call subsystem."
Error2: "Connections of the Physical Network cross nonvirtual boundaries. If any blocks in a Physical Network are within a nonvirtual subsystem, then all blocks of that network must be in the same nonvirtual subsystem. Either move affected blocks out of the nonvirtual subsystem, move network blocks into exactly one nonvirtual subsystem, or reconfigure affected nonvirtual subsystems to be virtual subsystems."
How else could I include the dynamics of my system, imported from the URDF, as the StateTransitionFunction? simscape, extended kalman filter, state transition function, multibody, estimate states MATLAB Answers — New Questions
Edge browser takes 400MB RAM with only one tab opening!
Is this a normal? I can’t believe the fact but the task manager will not lie as you can see from the screenshot. Why this happens?
Is this a normal? I can’t believe the fact but the task manager will not lie as you can see from the screenshot. Why this happens? Read More
Can anyone recommend a safe Spotif.y music Downloader for my PC Windows 11?
I’m looking for a safe Spotif.y music downloader recently. I want to download my favorite songs to MP3 format and put them on my Windows 11 computer. I’ve tried some online tools, but they don’t seem very reliable, and some are full of ads. So I want to ask everyone, have you used a safe and simple Spotif.y music downloader? Can you recommend one? I hope the operation is not too complicated and can download songs on S.potify stably.
I’m looking for a safe Spotif.y music downloader recently. I want to download my favorite songs to MP3 format and put them on my Windows 11 computer. I’ve tried some online tools, but they don’t seem very reliable, and some are full of ads. So I want to ask everyone, have you used a safe and simple Spotif.y music downloader? Can you recommend one? I hope the operation is not too complicated and can download songs on S.potify stably. Read More
Switched of electricity, now PC won’t start.
Had to turn of the electricity to disconnect some plug sockets for painting. Turned electricity back on but now the pc shows this:
Had to turn of the electricity to disconnect some plug sockets for painting. Turned electricity back on but now the pc shows this: Read More
Microsoft office outlook cannot connect to onprem exchange server
Hi,
In my company, we are using on-prem Exchange 2019 for the mail server and we published our main website on the same domain as the primary email address. For instance, email address removed for privacy reasons is our email address format and our website address is example.com. Everything was working fine until we developed our website, after that from the internet whenever I tried to add an account to Microsoft Office Outlook I kept receiving “Something went wrong and Outlook couldn’t set up your account”. After so much effort and searching I’ve found out the reason is that Outlook sends a query to example.com which is my primary domain and the new website sends some response that causes the error and when I removed the DNS record from the internet everything went back to normal.
Now I do not know how to resolve this issue so I can have my website while outlook works correctly.
Please help me
Hi,In my company, we are using on-prem Exchange 2019 for the mail server and we published our main website on the same domain as the primary email address. For instance, email address removed for privacy reasons is our email address format and our website address is example.com. Everything was working fine until we developed our website, after that from the internet whenever I tried to add an account to Microsoft Office Outlook I kept receiving “Something went wrong and Outlook couldn’t set up your account”. After so much effort and searching I’ve found out the reason is that Outlook sends a query to example.com which is my primary domain and the new website sends some response that causes the error and when I removed the DNS record from the internet everything went back to normal.Now I do not know how to resolve this issue so I can have my website while outlook works correctly.Please help me Read More
Onedrive – why multiple folders in Explorer
OK I know many folks don’t like OneDrive, but I have 2 PC’s and a laptop, and I want files and emails to be available on either device.
Now that I found out how to stop my desktop being copied between the units that all have different display size and resolution, OneDrive basically lets me do that.
However, it presents an annoying feature whereby there are 2 different branches with folders on my primary PC.
There is a one drive folder – in John -Personal and John Chapman, the problem is I then see multiple downloads, document, picture folders etc, which confuses me.
How do I simplify this – I create Word, Excel and PowerPoint files and use outlook for 2 email addresses – those are the files I want available on either of the 3 devices I use.
Is this duplication or just a view selection that I don’t know how to control?
Did I describe my problem clearly? It’s hard to show full detail without showing more folder content.
Thanks.
OK I know many folks don’t like OneDrive, but I have 2 PC’s and a laptop, and I want files and emails to be available on either device. Now that I found out how to stop my desktop being copied between the units that all have different display size and resolution, OneDrive basically lets me do that.However, it presents an annoying feature whereby there are 2 different branches with folders on my primary PC. There is a one drive folder – in John -Personal and John Chapman, the problem is I then see multiple downloads, document, picture folders etc, which confuses me.How do I simplify this – I create Word, Excel and PowerPoint files and use outlook for 2 email addresses – those are the files I want available on either of the 3 devices I use.Is this duplication or just a view selection that I don’t know how to control? Did I describe my problem clearly? It’s hard to show full detail without showing more folder content.Thanks. Read More
I want to create a following matrix using nested loops
Matrix[1,2,3,4,5;2,4,7,11,16;3,7,14,25,41] Here every row has different logic.How do I use for loop?Matrix[1,2,3,4,5;2,4,7,11,16;3,7,14,25,41] Here every row has different logic.How do I use for loop? Matrix[1,2,3,4,5;2,4,7,11,16;3,7,14,25,41] Here every row has different logic.How do I use for loop? #nestedloop #matrix MATLAB Answers — New Questions
Organization Sign-in portal not popping up
When I try to open Matlab Desktop 2024a it asks me to sign in and when i type my email it says "Sign into your organization’s portal to proceed." but there is not Organization portal popping up for me to sign inWhen I try to open Matlab Desktop 2024a it asks me to sign in and when i type my email it says "Sign into your organization’s portal to proceed." but there is not Organization portal popping up for me to sign in When I try to open Matlab Desktop 2024a it asks me to sign in and when i type my email it says "Sign into your organization’s portal to proceed." but there is not Organization portal popping up for me to sign in login, sign-in MATLAB Answers — New Questions
Snipping tool is absolutely under rated
It’s really good, I use it all the time!!! Do you agree with me?
It’s really good, I use it all the time!!! Do you agree with me? Read More
What’s the safest X T-witter video downloader for Windows 11 PC?
I am an elementary school teacher. I have been looking for some educational videos on T-witter recently. I want to download them for my children to watch in class. But the problem I have is that I don’t know what tool can be used to download these videos safely. I use Windows 11 and have tried some download tools, but many of them have annoying ads and even make me worry about security risks. I need a safe, stable and easy-to-use tool that can help me download X T.witter videos quickly.
Does anyone have any good recommendations? I just want to find a convenient and safe way. After all, it is content for children to watch, and safety is the most important thing!
I am an elementary school teacher. I have been looking for some educational videos on T-witter recently. I want to download them for my children to watch in class. But the problem I have is that I don’t know what tool can be used to download these videos safely. I use Windows 11 and have tried some download tools, but many of them have annoying ads and even make me worry about security risks. I need a safe, stable and easy-to-use tool that can help me download X T.witter videos quickly. Does anyone have any good recommendations? I just want to find a convenient and safe way. After all, it is content for children to watch, and safety is the most important thing! Read More
MSIX issue while uploading in Microsoft partner
Hi Gérard ,
Thank you for your response. We are facing two issues while uploading the MSIX app to the Microsoft Store:
1. If I create the MSIX using the publisher ID provided in the “Product Identity” created by the Microsoft Partner Center, the upload process is successful. However, the MSIX fails to install or launch, showing a publisher and certificate-related issue.
2. If I create the MSIX using our company’s publisher details, the MSIX installs and launches successfully. However, it does not upload to the Apps and Games section, displaying a publisher and certificate-related issue.
Could you please assist with resolving these issues?
Best Regards,
Avinash Kumar Paswan
Software Development
(+91)7905134594
Hi Gérard , Thank you for your response. We are facing two issues while uploading the MSIX app to the Microsoft Store: 1. If I create the MSIX using the publisher ID provided in the “Product Identity” created by the Microsoft Partner Center, the upload process is successful. However, the MSIX fails to install or launch, showing a publisher and certificate-related issue. 2. If I create the MSIX using our company’s publisher details, the MSIX installs and launches successfully. However, it does not upload to the Apps and Games section, displaying a publisher and certificate-related issue. Could you please assist with resolving these issues?Best Regards, Avinash Kumar Paswan Software Development (+91)7905134594 Read More
Some keyboard shortcuts not working on iPadOS
Previously I created a thread on this on Azure Virtual Desktop Feedback and I was recommended to put it here.
I’m using the official Remote Desktop client from the App Store to connect to a windows 10 PC.
When using an external keyboard, most keyboard but some can work. Shortcuts not working include Alt+F4, Ctrl+/ (though Ctrl+A, Ctrl+S works), Ctrl+F5, to name a few.
Can replicate with multiple iPads, PCs and external keyboards.
Previously I created a thread on this on Azure Virtual Desktop Feedback and I was recommended to put it here. I’m using the official Remote Desktop client from the App Store to connect to a windows 10 PC.When using an external keyboard, most keyboard but some can work. Shortcuts not working include Alt+F4, Ctrl+/ (though Ctrl+A, Ctrl+S works), Ctrl+F5, to name a few.Can replicate with multiple iPads, PCs and external keyboards. Read More