Month: September 2024
Azure Lighthouse: Updated Entra ID Group used for Authorization with new Users
With Azure Lighthouse and the managed tenant, when applying additional users to a related Entra ID group used for authorization, how do you identify the issues when those users show they do not have access to valid customer tenants and their resources, such as Log Analytics Workspaces?
With Azure Lighthouse and the managed tenant, when applying additional users to a related Entra ID group used for authorization, how do you identify the issues when those users show they do not have access to valid customer tenants and their resources, such as Log Analytics Workspaces? Read More
why the give code doesn’t meet my requirements?
I want to Wrap angles to the range [-180, 180] degrees. For this I have the following code:
function wrapped_angles = wrapTo180(angles)
% Wrap angles to the range [-180, 180] degrees
wrapped_angles = mod(angles + 180, 360) – 180;
end
Likewise, I want Wrap angles to the range [-90, 90] degrees. For this I have the following code:
function wrapped_angles = wrapTo90(angles)
% Wrap angles to the range [-90, 90] degrees
wrapped_angles = mod(angles + 90, 180) – 90;
end
The 2nd function works correctly but the 1st one doesn’t work correctly. Why it is so?I want to Wrap angles to the range [-180, 180] degrees. For this I have the following code:
function wrapped_angles = wrapTo180(angles)
% Wrap angles to the range [-180, 180] degrees
wrapped_angles = mod(angles + 180, 360) – 180;
end
Likewise, I want Wrap angles to the range [-90, 90] degrees. For this I have the following code:
function wrapped_angles = wrapTo90(angles)
% Wrap angles to the range [-90, 90] degrees
wrapped_angles = mod(angles + 90, 180) – 90;
end
The 2nd function works correctly but the 1st one doesn’t work correctly. Why it is so? I want to Wrap angles to the range [-180, 180] degrees. For this I have the following code:
function wrapped_angles = wrapTo180(angles)
% Wrap angles to the range [-180, 180] degrees
wrapped_angles = mod(angles + 180, 360) – 180;
end
Likewise, I want Wrap angles to the range [-90, 90] degrees. For this I have the following code:
function wrapped_angles = wrapTo90(angles)
% Wrap angles to the range [-90, 90] degrees
wrapped_angles = mod(angles + 90, 180) – 90;
end
The 2nd function works correctly but the 1st one doesn’t work correctly. Why it is so? wrapping angles within a range, logic is correct but, not working, though one is working MATLAB Answers — New Questions
Wind Turbine Doubly Fed Induction Generator (Phasor Type) is operated under phasor and energy storage is discrete, this is how to solve
Hello, everyone, do you know how to change the Wind Turbine Doubly Fed Induction Generator (Phasor Type) in simulink to discrete, because the system needs to add energy storage, energy storage a lot of things are discrete, two put together can not run, How to modify it? Is it a need to redo an energy storage system that can run on phasor? How should I do this? Are there any good people willing to help meHello, everyone, do you know how to change the Wind Turbine Doubly Fed Induction Generator (Phasor Type) in simulink to discrete, because the system needs to add energy storage, energy storage a lot of things are discrete, two put together can not run, How to modify it? Is it a need to redo an energy storage system that can run on phasor? How should I do this? Are there any good people willing to help me Hello, everyone, do you know how to change the Wind Turbine Doubly Fed Induction Generator (Phasor Type) in simulink to discrete, because the system needs to add energy storage, energy storage a lot of things are discrete, two put together can not run, How to modify it? Is it a need to redo an energy storage system that can run on phasor? How should I do this? Are there any good people willing to help me wind turbine doubly fed induction generator (phaso, energy storage MATLAB Answers — New Questions
Shortest Path with Single Source Node and Multiple Target Nodes
Hi,
There is node from A to H and used shortestpath fn to find the short path
a=["A" "A" "A" "B" "B" "C" "C" "D" "D" "E" "F" "F" "G"];
b=["B" "C" "D" "D" "F" "D" "E" "E" "G" "G" "G" "H" "H"];
distance=[3 2 5 2 13 2 5 4 3 6 2 3 6];
c=digraph(a,b,distance)
plot(c,’EdgeLabel’,c.Edges.Weight)
[p,d]=shortestpath(c,"A","H")
got this
c =
digraph with properties:
Edges: [13×2 table]
Nodes: [8×1 table]
p = 1×5 string
"A" "C" "D" "G" "H" *
d = 13
But i need to have results from A to B , A to C ,…. till A to H. I have used shortestpathtree but gives only edges and nodes with distance. I need result like above one ‘p’ with multiple target nodes (with single source node). is that for loop helpful? else any other way.
Thanks in advance.Hi,
There is node from A to H and used shortestpath fn to find the short path
a=["A" "A" "A" "B" "B" "C" "C" "D" "D" "E" "F" "F" "G"];
b=["B" "C" "D" "D" "F" "D" "E" "E" "G" "G" "G" "H" "H"];
distance=[3 2 5 2 13 2 5 4 3 6 2 3 6];
c=digraph(a,b,distance)
plot(c,’EdgeLabel’,c.Edges.Weight)
[p,d]=shortestpath(c,"A","H")
got this
c =
digraph with properties:
Edges: [13×2 table]
Nodes: [8×1 table]
p = 1×5 string
"A" "C" "D" "G" "H" *
d = 13
But i need to have results from A to B , A to C ,…. till A to H. I have used shortestpathtree but gives only edges and nodes with distance. I need result like above one ‘p’ with multiple target nodes (with single source node). is that for loop helpful? else any other way.
Thanks in advance. Hi,
There is node from A to H and used shortestpath fn to find the short path
a=["A" "A" "A" "B" "B" "C" "C" "D" "D" "E" "F" "F" "G"];
b=["B" "C" "D" "D" "F" "D" "E" "E" "G" "G" "G" "H" "H"];
distance=[3 2 5 2 13 2 5 4 3 6 2 3 6];
c=digraph(a,b,distance)
plot(c,’EdgeLabel’,c.Edges.Weight)
[p,d]=shortestpath(c,"A","H")
got this
c =
digraph with properties:
Edges: [13×2 table]
Nodes: [8×1 table]
p = 1×5 string
"A" "C" "D" "G" "H" *
d = 13
But i need to have results from A to B , A to C ,…. till A to H. I have used shortestpathtree but gives only edges and nodes with distance. I need result like above one ‘p’ with multiple target nodes (with single source node). is that for loop helpful? else any other way.
Thanks in advance. shortestpath, graph, nodes, plot MATLAB Answers — New Questions
Access to function buttons
Hi,
I am using Excel via chrome on an Acer Chromebook 315 laptop. I am signed in with my school account. My concern is, I don’t have all necessary functions available to me for me to be able to get the full benefits of Excel and complete assignments. Some missing functions include the Header & Footer and Name Range From Selection. Also, when I am entering a formula, a dialog box doesn’t appear; instead, Excel directs me to enter the formula within the cell or formula box (which can inconvenience me if there’s an option I need to check in the dialog box).
I hope to receive a response soon.
Thanks.
Hi, I am using Excel via chrome on an Acer Chromebook 315 laptop. I am signed in with my school account. My concern is, I don’t have all necessary functions available to me for me to be able to get the full benefits of Excel and complete assignments. Some missing functions include the Header & Footer and Name Range From Selection. Also, when I am entering a formula, a dialog box doesn’t appear; instead, Excel directs me to enter the formula within the cell or formula box (which can inconvenience me if there’s an option I need to check in the dialog box). I hope to receive a response soon. Thanks. Read More
How to automate the Combining of several changeable PowerPoint presentations?
I have a situation where I use a single PowerPoint presentation on a regular basis, which doesn’t change. However, within that presentation, I would now like to insert (probably via “Insert Object”) several different and smaller presentations, with their own formatting, transitions and music. Unfortunately, these additional presentations change on a weekly basis.
I am hoping to build up a library of these smaller PowerPoint presentations over time, which could then be reused, as required. What I’m looking for, is an easy way of choosing these different presentations, which would then be seamlessly combine into the master presentation, when it was played.
I was thinking about maybe having a separate information file (in something like Excell), which could contain the changeable information, making it easy to update, and protecting the overall information. I also have the issue of other people having to use this presentation on occasion, so it would need to be simple, and hard for them to “stuff it all up”!
Unfortunately, I haven’t been able to work out an easy way to do this as yet, and I was hoping someone out there could assist.
Has anyone created a system similar to this, which they could share, or if anyone has any advice or pointers on this issue, that would be really appreciated.
I have a situation where I use a single PowerPoint presentation on a regular basis, which doesn’t change. However, within that presentation, I would now like to insert (probably via “Insert Object”) several different and smaller presentations, with their own formatting, transitions and music. Unfortunately, these additional presentations change on a weekly basis.I am hoping to build up a library of these smaller PowerPoint presentations over time, which could then be reused, as required. What I’m looking for, is an easy way of choosing these different presentations, which would then be seamlessly combine into the master presentation, when it was played.I was thinking about maybe having a separate information file (in something like Excell), which could contain the changeable information, making it easy to update, and protecting the overall information. I also have the issue of other people having to use this presentation on occasion, so it would need to be simple, and hard for them to “stuff it all up”!Unfortunately, I haven’t been able to work out an easy way to do this as yet, and I was hoping someone out there could assist.Has anyone created a system similar to this, which they could share, or if anyone has any advice or pointers on this issue, that would be really appreciated. Read More
The Azure Storage product group is heading to the SNIA Developer Conference 2024
The Azure Storage product group is heading to the SNIA Developer Conference (SDC) 2024 in Santa Clara, California, USA from September 16th through September 18th. We have a large contingent of Product Managers and Engineers responsible for Azure Blob Storage and Azure Files presenting across multiple sessions at the conference as well as the Cloud Object Storage Plugfest.
If you’re attending the conference, stop by our sessions, listen in, say “Hello!” and introduce yourself as we demonstrate how Azure Storage can accommodate the largest AI training and AI inference workloads using Azure Blob Storage. Or if you’re a Files customer, stop by our sessions on Azure Files and SMB.
Session catalog
Date
Session title
Speakers
Track
17 September 2024 @ 3:05PM PT
Elevating Linux File Access: Recent Enhancements to the SMB 3.1.1 Client
Steven French – Principal Software Engineer – Azure Storage
File Systems & Protocols
17 September 2024 @ 4:05PM PT
Cloud Storage Considerations for Retrieval Augmented Generation (RAG) in AI Applications
Vamshidhar Kommineni – Group Product Manager
Saurabh Sensharma – Principal Product Manager
AI / ML Applications for Storage
17 September @ 4:05PM PT
Demystifying Linux SMB Mount Options
Bharath S M – Senior Software Engineer
Shyam Prasad – Principal Software Engineering Manager
File Systems & Protocols
18 September @ 9:30AM PT
DNA Data Storage “End-to-End” System Concept
Shruti Sethi – Senior Technical Manager
Archival Storage
18 September @ 11:35AM PT
Azure Files: Design Challenges for the Biggest File Server in the World
Utsav Mohata – Principal Software Engineer
Rena Shah – Senior Product Manager
File Systems & Protocols
18 September 2024 @ 2:30PM PT
Supercharging OpenAI Training with Microsoft’s Azure Blob Storage
Jason Vallery – Group Product Manager – Azure Blob Storage
Jegan Devaraju – Group Engineering Manager – Azure Blob Storage
AI / ML Infrastructure
18 September @ 2:30PM PT
Troubleshooting/Debugging Issues on Linux SMB Client
Bharath S M – Senior Software Engineer
File Systems & Protocols
16 September – 18 September
Scott Hoag – Principal Product Manager – Azure Object Storage
Pete Imming – Principal Product Manager – Azure Object Storage
Ryan Erdmann – Principal Software Engineer
Plugfest
16 September – 19 September
Azure Files engineering team
IO Lab
Microsoft Tech Community – Latest Blogs –Read More
Simscape Multibody – Error “Model not assembled due to a position violation” when I change the value of the actuation input of a RevoluteJoint
Hi,
i am currently trying my first major project in Simscape (delta robot).
I want to adjust the angles of the joints RevoluteJoint2, 3 and 4 via three inputs. When I do that I get the mentioned error. If all joints have the same input value, no error occurs.
Can someone tell me why the error occurs? Thank you.
Project:
Is attached.
Error message:
"An error occurred while running the simulation and the simulation was terminated
Caused by:
[‘untitled_ohneCad/Solver Configuration’]: Model not assembled due to a position violation. The failure occurred during the attempt to assemble all joints in the system and satisfy any motion inputs. If an Update Diagram operation completes successfully, the failure is likely caused by motion inputs. Consider adjusting the motion inputs to specify a different starting configuration. Also consider adjusting or adding joint targets to better guide the assembly."Hi,
i am currently trying my first major project in Simscape (delta robot).
I want to adjust the angles of the joints RevoluteJoint2, 3 and 4 via three inputs. When I do that I get the mentioned error. If all joints have the same input value, no error occurs.
Can someone tell me why the error occurs? Thank you.
Project:
Is attached.
Error message:
"An error occurred while running the simulation and the simulation was terminated
Caused by:
[‘untitled_ohneCad/Solver Configuration’]: Model not assembled due to a position violation. The failure occurred during the attempt to assemble all joints in the system and satisfy any motion inputs. If an Update Diagram operation completes successfully, the failure is likely caused by motion inputs. Consider adjusting the motion inputs to specify a different starting configuration. Also consider adjusting or adding joint targets to better guide the assembly." Hi,
i am currently trying my first major project in Simscape (delta robot).
I want to adjust the angles of the joints RevoluteJoint2, 3 and 4 via three inputs. When I do that I get the mentioned error. If all joints have the same input value, no error occurs.
Can someone tell me why the error occurs? Thank you.
Project:
Is attached.
Error message:
"An error occurred while running the simulation and the simulation was terminated
Caused by:
[‘untitled_ohneCad/Solver Configuration’]: Model not assembled due to a position violation. The failure occurred during the attempt to assemble all joints in the system and satisfy any motion inputs. If an Update Diagram operation completes successfully, the failure is likely caused by motion inputs. Consider adjusting the motion inputs to specify a different starting configuration. Also consider adjusting or adding joint targets to better guide the assembly." model position violation, delta robot MATLAB Answers — New Questions
How to find the model of a black box with a known input and output signature of signal.
Please help me identify the model of a black box with a known input x(t) and output y(t), using the provided DATA.mat.
I have attempted to map the output to the given input using MATLAB System Identification Toolbox and neural networks, as described in the application section, but have not been successful.
Kindly assist in mapping this input to the output. You are free to use any methods.
Attacked input and output data.Please help me identify the model of a black box with a known input x(t) and output y(t), using the provided DATA.mat.
I have attempted to map the output to the given input using MATLAB System Identification Toolbox and neural networks, as described in the application section, but have not been successful.
Kindly assist in mapping this input to the output. You are free to use any methods.
Attacked input and output data. Please help me identify the model of a black box with a known input x(t) and output y(t), using the provided DATA.mat.
I have attempted to map the output to the given input using MATLAB System Identification Toolbox and neural networks, as described in the application section, but have not been successful.
Kindly assist in mapping this input to the output. You are free to use any methods.
Attacked input and output data. system identification, signal processing MATLAB Answers — New Questions
USB callback “terminator” fails to trigger a read when messages are close together
My App Designer program uses USB communication to an Arduino
It usually works but every once in a while Matlab fails to read.
configureCallback(app.PicoCom,"terminator",@app.PicoInput);
…
function PicoInput(app,src,~)
% check if there is more than 1 line. For some reason I don’t get another callback!!!
while (app.PicoCom.NumBytesAvailable>0)
raw = readline(src);
I’ve already added the while loop which mostly fixed it except if the messages are 20msec apart.
The only time it fails (and not very often) is between 2 messages that are known to be 20 ms apart.
When it fails (App Designer says "Run" … no action), I can go into the debugger (with a special pause I put in to read app properties) and check with
K>> app.PicoCom
ans =
Serialport with properties:
Port: "COM6"
BaudRate: 57600
NumBytesAvailable: 11
K>> read(app.PicoCom,11,"char")
ans =
‘z73851718
‘
And there it sits, not being read.
Sure, there are probably work arounds (I’m open to suggestions to manage it now) but isn’t this a bug!
My next attempt to handle this is to add a pause(0.03); at the end of the while loop but this is very unsatisfying and how do I know it will NEVER fail?My App Designer program uses USB communication to an Arduino
It usually works but every once in a while Matlab fails to read.
configureCallback(app.PicoCom,"terminator",@app.PicoInput);
…
function PicoInput(app,src,~)
% check if there is more than 1 line. For some reason I don’t get another callback!!!
while (app.PicoCom.NumBytesAvailable>0)
raw = readline(src);
I’ve already added the while loop which mostly fixed it except if the messages are 20msec apart.
The only time it fails (and not very often) is between 2 messages that are known to be 20 ms apart.
When it fails (App Designer says "Run" … no action), I can go into the debugger (with a special pause I put in to read app properties) and check with
K>> app.PicoCom
ans =
Serialport with properties:
Port: "COM6"
BaudRate: 57600
NumBytesAvailable: 11
K>> read(app.PicoCom,11,"char")
ans =
‘z73851718
‘
And there it sits, not being read.
Sure, there are probably work arounds (I’m open to suggestions to manage it now) but isn’t this a bug!
My next attempt to handle this is to add a pause(0.03); at the end of the while loop but this is very unsatisfying and how do I know it will NEVER fail? My App Designer program uses USB communication to an Arduino
It usually works but every once in a while Matlab fails to read.
configureCallback(app.PicoCom,"terminator",@app.PicoInput);
…
function PicoInput(app,src,~)
% check if there is more than 1 line. For some reason I don’t get another callback!!!
while (app.PicoCom.NumBytesAvailable>0)
raw = readline(src);
I’ve already added the while loop which mostly fixed it except if the messages are 20msec apart.
The only time it fails (and not very often) is between 2 messages that are known to be 20 ms apart.
When it fails (App Designer says "Run" … no action), I can go into the debugger (with a special pause I put in to read app properties) and check with
K>> app.PicoCom
ans =
Serialport with properties:
Port: "COM6"
BaudRate: 57600
NumBytesAvailable: 11
K>> read(app.PicoCom,11,"char")
ans =
‘z73851718
‘
And there it sits, not being read.
Sure, there are probably work arounds (I’m open to suggestions to manage it now) but isn’t this a bug!
My next attempt to handle this is to add a pause(0.03); at the end of the while loop but this is very unsatisfying and how do I know it will NEVER fail? usb terminate based callback fails occasionally MATLAB Answers — New Questions
Unable to change TLS version on Event Hub related to Azure Purview account
I have a event hub that is related to Azure Purview account. I can’t change the TLS version on it because there is a deny rbac permission set on it which denies access to all other accounts except the Azure Purview app itself. From what I am reading, it seems that for Microsoft Purview accounts was created before December 15th, 2022 the Event Hub is a managed resource and is provisioned during the Microsoft Purview account provisioning. Is there anyway to modfiy the permissions on it to allow me to change the TLS version.
Or, do I need to disable this event hub and configure my own event Hub? If so then how bets to set it up?
I have a event hub that is related to Azure Purview account. I can’t change the TLS version on it because there is a deny rbac permission set on it which denies access to all other accounts except the Azure Purview app itself. From what I am reading, it seems that for Microsoft Purview accounts was created before December 15th, 2022 the Event Hub is a managed resource and is provisioned during the Microsoft Purview account provisioning. Is there anyway to modfiy the permissions on it to allow me to change the TLS version.Or, do I need to disable this event hub and configure my own event Hub? If so then how bets to set it up? Read More
Microsoft 365 Apps for Enterprise – Auto sign in and Activation using Domain User Credentials
Hi,
I use shared computer activation but every new user who sign-in for the first time required to login with their account and do manual activation. it burdens users all the time to do this.
there is a way to do when a user logs in to Microsoft 365 Apps he will do it automatically in shared computer activation without him having to do all that.
i would love a solution using domain user credentials.
Rodriguez_591
Hi,I use shared computer activation but every new user who sign-in for the first time required to login with their account and do manual activation. it burdens users all the time to do this.there is a way to do when a user logs in to Microsoft 365 Apps he will do it automatically in shared computer activation without him having to do all that. i would love a solution using domain user credentials. Rodriguez_591 Read More
Sharing one drive
Hi, I have 1Tb one drive account and am saving all my photos from my samsung phone to there.
My husband also has a samsung phone and I want his phone to save his photo to my one drive account as well to keep the photos together.
I tried to log in with my email on his account but that would disconnect my phone. Two phones can’t be connected to the same onedrive account.
How could I save his photo to my one drive account?
Thanks
Hi, I have 1Tb one drive account and am saving all my photos from my samsung phone to there. My husband also has a samsung phone and I want his phone to save his photo to my one drive account as well to keep the photos together.I tried to log in with my email on his account but that would disconnect my phone. Two phones can’t be connected to the same onedrive account.How could I save his photo to my one drive account?Thanks Read More
Script for a sum of value drive by rules
Hi!
I have a matrix of data with only 0 and 0.2 values. I need to have the sum of successive 0.2 values (delta) for each columns of my matrix. Example: col1= 0 0 0 0.2 0.2 0.2 0.2 0 0 0.2 0 0.2 0.2 and the result_col1= 0.8 0.2 0.4. I write a script that works very well to do this (see above). First little problem, how can I say to my script that you need to read all columns of my matrix and put each correspondant delta values in my final matrix d?
Then, I would like to have a rule saying to the script "when you saw less than five zeros successively don’t stop to calculate delta". In my script, the calculation of delta stop when the script saw only one zero after a 0.2 value.
Thanks a lot.
Julien
T = importdata(‘data.xls’)
T= T.Feuil1;
d(1,:) = zeros(1,size(T,2));
j=1;
for individu=1:size(T,2)
for i=1:size(T,1);
if T(i,individu)== 0.2 || any(T(1:i))==0
d(j,individu) = d(j,individu)+T(i,individu);
elseif T(i)==0 && T(i-1)== 0.2
j= j+1;
d(j,individu) = 0;
end
end
j=1;
endHi!
I have a matrix of data with only 0 and 0.2 values. I need to have the sum of successive 0.2 values (delta) for each columns of my matrix. Example: col1= 0 0 0 0.2 0.2 0.2 0.2 0 0 0.2 0 0.2 0.2 and the result_col1= 0.8 0.2 0.4. I write a script that works very well to do this (see above). First little problem, how can I say to my script that you need to read all columns of my matrix and put each correspondant delta values in my final matrix d?
Then, I would like to have a rule saying to the script "when you saw less than five zeros successively don’t stop to calculate delta". In my script, the calculation of delta stop when the script saw only one zero after a 0.2 value.
Thanks a lot.
Julien
T = importdata(‘data.xls’)
T= T.Feuil1;
d(1,:) = zeros(1,size(T,2));
j=1;
for individu=1:size(T,2)
for i=1:size(T,1);
if T(i,individu)== 0.2 || any(T(1:i))==0
d(j,individu) = d(j,individu)+T(i,individu);
elseif T(i)==0 && T(i-1)== 0.2
j= j+1;
d(j,individu) = 0;
end
end
j=1;
end Hi!
I have a matrix of data with only 0 and 0.2 values. I need to have the sum of successive 0.2 values (delta) for each columns of my matrix. Example: col1= 0 0 0 0.2 0.2 0.2 0.2 0 0 0.2 0 0.2 0.2 and the result_col1= 0.8 0.2 0.4. I write a script that works very well to do this (see above). First little problem, how can I say to my script that you need to read all columns of my matrix and put each correspondant delta values in my final matrix d?
Then, I would like to have a rule saying to the script "when you saw less than five zeros successively don’t stop to calculate delta". In my script, the calculation of delta stop when the script saw only one zero after a 0.2 value.
Thanks a lot.
Julien
T = importdata(‘data.xls’)
T= T.Feuil1;
d(1,:) = zeros(1,size(T,2));
j=1;
for individu=1:size(T,2)
for i=1:size(T,1);
if T(i,individu)== 0.2 || any(T(1:i))==0
d(j,individu) = d(j,individu)+T(i,individu);
elseif T(i)==0 && T(i-1)== 0.2
j= j+1;
d(j,individu) = 0;
end
end
j=1;
end beginner MATLAB Answers — New Questions
Feature Request: Allow pinned tabs to redirect to a specific URL at each time browser restart.
Previously, I used “Install this site as an app” to install all the tools to my Windows start menu to create handy shortcuts. However, as time passes, there are too many online tools for daily use, and I think the start menu is no longer a good place for my tools. So, I’m trying to create several workspaces and pin tabs in Edge to solve my problem, and I think it works pretty well on first impression. Unfortunately, I am disappointed that the pinned tab doesn’t provide any option to set “always redirect to the specific URLs when the browser restarts”. It makes the whole workspace doesn’t work as I expected. So, I hope this feature will come up in the future.
Previously, I used “Install this site as an app” to install all the tools to my Windows start menu to create handy shortcuts. However, as time passes, there are too many online tools for daily use, and I think the start menu is no longer a good place for my tools. So, I’m trying to create several workspaces and pin tabs in Edge to solve my problem, and I think it works pretty well on first impression. Unfortunately, I am disappointed that the pinned tab doesn’t provide any option to set “always redirect to the specific URLs when the browser restarts”. It makes the whole workspace doesn’t work as I expected. So, I hope this feature will come up in the future. Read More
Write a Convolution function without using for loop and verify result using conv function.
Write a Convolution function with two inputs x[n] and h[n] without using for loop and verify result using conv function.Write a Convolution function with two inputs x[n] and h[n] without using for loop and verify result using conv function. Write a Convolution function with two inputs x[n] and h[n] without using for loop and verify result using conv function. convolution, signal processing, digital signal processing, system, dtft, electrical MATLAB Answers — New Questions
time shifting
i want the program to advance or delay the signal…
by taking input from user whether to advance or delay & by what number?….
please use switch statement?….
any signal like-ramp,step,exponential
in it i am using subplot to plot the original signal & shifted version of the signal..
i have a program something like this–
*clear all
close all
clc
disp(‘given function is’)
x=(-10:10);
for i=1:1:21
if(x(i)>0)
y(i)=exp(x(i));
else
y(i)=0;
end
end
subplot(1,2,1)
stem(x,y)
disp(‘enter whether to advance or delay’)
s=input(‘1>advancen 2>Delay’)
n=input(‘enter the no of step by which signal is to be shifted’)
switch(s)
case 1
[
for i=1+n:1:21+n
if(x(i)>0)
y(i)=1;
else
y(i)=0;
end
]
case 2
[
for i=1-n:1:21-n
if(x(i)>0)
y(i)=1;
else
y(i)=0;
end
]
subplot(1,2,2)
stem(x,y)
but when i run the program it gives error in the ‘for’ command in case 1.i want the program to advance or delay the signal…
by taking input from user whether to advance or delay & by what number?….
please use switch statement?….
any signal like-ramp,step,exponential
in it i am using subplot to plot the original signal & shifted version of the signal..
i have a program something like this–
*clear all
close all
clc
disp(‘given function is’)
x=(-10:10);
for i=1:1:21
if(x(i)>0)
y(i)=exp(x(i));
else
y(i)=0;
end
end
subplot(1,2,1)
stem(x,y)
disp(‘enter whether to advance or delay’)
s=input(‘1>advancen 2>Delay’)
n=input(‘enter the no of step by which signal is to be shifted’)
switch(s)
case 1
[
for i=1+n:1:21+n
if(x(i)>0)
y(i)=1;
else
y(i)=0;
end
]
case 2
[
for i=1-n:1:21-n
if(x(i)>0)
y(i)=1;
else
y(i)=0;
end
]
subplot(1,2,2)
stem(x,y)
but when i run the program it gives error in the ‘for’ command in case 1. i want the program to advance or delay the signal…
by taking input from user whether to advance or delay & by what number?….
please use switch statement?….
any signal like-ramp,step,exponential
in it i am using subplot to plot the original signal & shifted version of the signal..
i have a program something like this–
*clear all
close all
clc
disp(‘given function is’)
x=(-10:10);
for i=1:1:21
if(x(i)>0)
y(i)=exp(x(i));
else
y(i)=0;
end
end
subplot(1,2,1)
stem(x,y)
disp(‘enter whether to advance or delay’)
s=input(‘1>advancen 2>Delay’)
n=input(‘enter the no of step by which signal is to be shifted’)
switch(s)
case 1
[
for i=1+n:1:21+n
if(x(i)>0)
y(i)=1;
else
y(i)=0;
end
]
case 2
[
for i=1-n:1:21-n
if(x(i)>0)
y(i)=1;
else
y(i)=0;
end
]
subplot(1,2,2)
stem(x,y)
but when i run the program it gives error in the ‘for’ command in case 1. switch, homework MATLAB Answers — New Questions
Latest Canary Win 11 versions and Star Wars Outlaws (edited)
On my two computers running the latest versions of Canary, Star Wars Outlaws, recently released by Ubisoft, crashes. The game hangs (closes itself) even after several dozen seconds, regardless of in-game behavior, without any error message.I nterestingly, many other players on the Outlaws forums are complaining about the same issue in the Canary Insider build.
Perhaps some direction could be given by the information that this error does not appear in Windows 23h2 versions, but unfortunately it causes problems in 24h2 version. During a failure, I have no problems with overheating of the card/processor/board. I also exclude antivirus because I added the game to the exceptions. I also use the latest NVIDIA drivers.
On my two computers running the latest versions of Canary, Star Wars Outlaws, recently released by Ubisoft, crashes. The game hangs (closes itself) even after several dozen seconds, regardless of in-game behavior, without any error message.I nterestingly, many other players on the Outlaws forums are complaining about the same issue in the Canary Insider build.Perhaps some direction could be given by the information that this error does not appear in Windows 23h2 versions, but unfortunately it causes problems in 24h2 version. During a failure, I have no problems with overheating of the card/processor/board. I also exclude antivirus because I added the game to the exceptions. I also use the latest NVIDIA drivers. Read More
When I try to open office 365 I get a blank white screen. Urgent!
Guys please help!
When I try to open my office 365 I get a blank white screen. Just happened this morning.
I cant see my files.
I tried uninstalling office 365 and reinstalling it from the Microsoft store but it’s still blank.
What do I do?
Guys please help!When I try to open my office 365 I get a blank white screen. Just happened this morning.I cant see my files.I tried uninstalling office 365 and reinstalling it from the Microsoft store but it’s still blank.What do I do? Read More
Problem with Excel for the Web
I need help with Excel for Web.
In my organization, it works fine for everyone else, but when I edit an Excel file, I need to be the first to enter it. If there is any other user, I get an error message stating that the file is locked and I can only view it in read-only mode.
If the other user closes the file, I can normally enter it, and the other user may also enter it.
Also, other users do not see this, and they can enter the file if they like in any order, etc.
I need help with Excel for Web. In my organization, it works fine for everyone else, but when I edit an Excel file, I need to be the first to enter it. If there is any other user, I get an error message stating that the file is locked and I can only view it in read-only mode. If the other user closes the file, I can normally enter it, and the other user may also enter it. Also, other users do not see this, and they can enter the file if they like in any order, etc. Read More