Community Profile

photo

s


Active since 2015

Statistics

  • First Review
  • First Answer
  • Thankful Level 3

View badges

Content Feed

View by

Question


I used find_system to get a list of Mux blocks present in a subsystem. There are 3 mux blocks named differently, the command returns the names in alphabetical order. Is there a way I can get them in the order they are present instead?
list = find_system(subsystem_path,'SearchDepth', 1, 'BlockType','Mux') which returns d , m & v but the order in which the m...

5 years ago | 0 answers | 0

0

answers

Answered
Sum specific rows of an array
clc; clear all; A = [0.2 2 3;1 3 4;1 4 6;0.8 4 6;2 5 1;1 6 2;0.4 6 2]; B = ...

5 years ago | 0

Answered
How to find out an element from a array when I have given some condition and rest of the elements will strore in different file as it is not obey the condition.
clc; close all; clear all; A=[0.006 0.001 3 4 0.005;6 7 0.008 9 10] B = A<0.01 C = A(B) D = A(~B) matlab.io.saveVariables...

5 years ago | 0

Answered
How to find out an element from a array when I have given some condition and rest of the elements will strore in different file as it is not obey the condition.
A=[ 1 4 5 88 34 9 10 3 45 12]; B = A < 10; C= A(B) D =A(~B) C = 1 4 5 9 3 D = 88 34 ...

5 years ago | 0

Question


Need Help Appending data to a table in every iteration from a for loop .I want to add new data to New_Table every loop but not overwrite the existing data.
filename = 'Notes.xls'; sheet = 1; T = readtable(filename); App_Names= T(:,4); Unique_Data = unique(App_Names); ...

5 years ago | 2 answers | 0

2

answers

Question


Can somebody give an brief idea where s function's can be used and what is it all about?
Can somebody give an brief idea where s function's can be used and what is all about?

7 years ago | 3 answers | 0

3

answers

Question


Why do i get the error message 'More than one advisor process call back function found.But only the one with higher precedence is used'
When i try running the model advisor checks for my simulink model. Then i get the warning message 'More than one advisor proces...

7 years ago | 0 answers | 0

0

answers

Question


I have a constant block which is used an input to my simulink block.When i do update diagram.It throws an error message saying 'Invalid setting for constant block for parameter value '.Why do i get this error ?
I have a constant block which is used an input to my simulink block.When i do update diagram.It throws an error message saying '...

7 years ago | 1 answer | 1

1

answer

Question


joining various points when using a for loop.
for p=0:0.05:1 h=p*log(1-p) plot(p,h) end For the above code i am trying to join the discrete points but...

8 years ago | 1 answer | 0

1

answer

Question


implementing direct form 2 without using filter command
x = randn(200,1); for n = 9:length(x) y(n) = 9*w(n)+w(n-1)+w(n-2)+33*w(n-3)+12*w(n-4) w(n) = 2*w(n-1)-1.5*w(n...

8 years ago | 1 answer | 0

1

answer

Question


how can i give rand function as an input to the given difference equation?
n=10 x(n)=randn(n,1) y(n)=2.5*x(n)+ x(n-1) The x(n)should be given as input to the y(n) but when i tried doing that x...

8 years ago | 1 answer | 0

1

answer

Question


how can i find the angle of a given input sequence [-1,2,-3,2,-1] using matlab not the phase response?
The answer given is pi.I found the X(w) the fourier tranform and i got the exponential terms.Now i am unable to get the phase no...

9 years ago | 0 answers | 0

0

answers

Question


These are my inputs how can i use str2num in title so that i can display the values of inputs?
A=input('amplitude= ') N=input('period= ') I get the following errors ??? Error using =...

9 years ago | 2 answers | 0

2

answers