photo

s


Aktiv seit 2015

Followers: 0   Following: 0

Statistik

MATLAB Answers

14 Fragen
3 Antworten

RANG
36.199
of 300.759

REPUTATION
1

BEITRÄGE
14 Fragen
3 Antworten

ANTWORTZUSTIMMUNG
50.0%

ERHALTENE STIMMEN
1

RANG
 of 21.081

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG

of 170.900

BEITRÄGE
0 Probleme
0 Lösungen

PUNKTESTAND
0

ANZAHL DER ABZEICHEN
0

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • First Review
  • First Answer
  • Thankful Level 3

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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...

mehr als 6 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
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 = ...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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 ...

fast 7 Jahre vor | 0

Frage


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); ...

mehr als 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


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?

etwa 9 Jahre vor | 3 Antworten | 0

3

Antworten

Frage


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...

mehr als 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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 '...

mehr als 9 Jahre vor | 1 Antwort | 1

1

Antwort

Frage


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...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 10 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 10 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


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 =...

mehr als 10 Jahre vor | 2 Antworten | 0

2

Antworten