photo

Mughees Asif


Last seen: environ 5 ans il y a Actif depuis 2019

Followers: 0   Following: 0

Statistiques

MATLAB Answers

10 Questions
0 Réponses

RANG
29 540
of 300 779

RÉPUTATION
1

CONTRIBUTIONS
10 Questions
0 Réponses

ACCEPTATION DE VOS RÉPONSES
60.0%

VOTES REÇUS
1

RANG
 of 21 084

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 170 997

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 3

Afficher les badges

Feeds

Afficher par

Question


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

presque 7 ans il y a | 1 réponse | 0

1

réponse

Question


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

presque 7 ans il y a | 1 réponse | 0

1

réponse

Question


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

presque 7 ans il y a | 1 réponse | 0

0

réponse

Question


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

presque 7 ans il y a | 1 réponse | 0

0

réponse

Question


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

presque 7 ans il y a | 2 réponses | 0

2

réponses

Question


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

presque 7 ans il y a | 1 réponse | 0

0

réponse

Question


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

presque 7 ans il y a | 1 réponse | 1

1

réponse

Question


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

presque 7 ans il y a | 1 réponse | 0

1

réponse

Question


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

presque 7 ans il y a | 2 réponses | 0

2

réponses

Question


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

presque 7 ans il y a | 1 réponse | 0

1

réponse