photo

Mughees Asif


Last seen: circa 5 anni fa Attivo dal 2019

Followers: 0   Following: 0

Statistica

MATLAB Answers

10 Domande
0 Risposte

RANK
29.540
of 300.813

REPUTAZIONE
1

CONTRIBUTI
10 Domande
0 Risposte

ACCETTAZIONE DELLE RISPOSTE
60.0%

VOTI RICEVUTI
1

RANK
 of 21.086

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK

of 171.169

CONTRIBUTI
0 Problemi
0 Soluzioni

PUNTEGGIO
0

NUMERO DI BADGE
0

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 3

Visualizza badge

Feeds

Visto da

Domanda


Displaying empty array as output
function B=IsStable(polynomial) if AllNonZero(polynomial) == false H = []; B = 0; elseif AllSameSign(polynomial) == false H...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


Error in while loop
function IsStable(polynomial) if AllNonZero(polynomial) == false H=[] elseif AllSameSign(polynomial) == false H=[] ...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


Calling multiple .m files into separate function
function [B, H] = IsStable(polynomial) if polynomial ~= AllNonZero(polynomial(false)) B=0; H=[]; elseif polynomial ~...

quasi 7 anni fa | 0 risposte | 0

0

risposte

Domanda


Calling another .m file function
function IsStable(polynomial) AllNonZero(polynomial) AllSameSign(polynomial) length(polynomial); while 1i==1:polynomial...

quasi 7 anni fa | 0 risposte | 0

0

risposte

Domanda


Basic function to find value
Hi, I have the following function which should consume a row vector and return a value of 1, if non of the elements are 0 in the...

quasi 7 anni fa | 2 risposte | 0

2

risposte

Domanda


Graph limits and area
I have the following code: x = linspace(-5, 5, 1000); y1 = -x; y2 = x.^2-4; lidx = y1 >= y2; figure set(findobj(gcf,'type'...

quasi 7 anni fa | 0 risposte | 0

0

risposte

Domanda


Highlight specific area of graph.
I have the following code: syms x y y = -x; fplot(x, y, 'k') hold on y = x.^2-4; fplot(x, y, 'k') hold off xlim([-5 5])...

quasi 7 anni fa | 1 risposta | 1

1

risposta

Domanda


Double output using disp()
The following code gives two outputs when I have only one disp() command at the end: characteristic = [1.000 2.2500 2.5002]...

quasi 7 anni fa | 1 risposta | 0

1

risposta

Domanda


Signs in the output.
h = [-1 -2 0] j=sqrt(sum(h.^2)); %Number conversion into string format k=num2str(h(1)); l=num2str(h(2)); m=num2str(h(3)); ...

quasi 7 anni fa | 2 risposte | 0

2

risposte

Domanda


Calculating dot product of 2 3 dimensional row vectors
x=input('Enter the 1st pair of 3 vector elements in [square brackets]: '); if (x~=3); disp('The vectors elements cannot c...

quasi 7 anni fa | 1 risposta | 0

1

risposta