![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/14529788_1547381099565_DEF.jpg)
Mughees Asif
Followers: 0 Following: 0
Statistik
10 Fragen
0 Antworten
RANG
29.228
of 297.016
REPUTATION
1
BEITRÄGE
10 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
60.0%
ERHALTENE STIMMEN
1
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
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 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Displaying empty array as output
function B=IsStable(polynomial) if AllNonZero(polynomial) == false H = []; B = 0; elseif AllSameSign(polynomial) == false H...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Error in while loop
function IsStable(polynomial) if AllNonZero(polynomial) == false H=[] elseif AllSameSign(polynomial) == false H=[] ...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Calling multiple .m files into separate function
function [B, H] = IsStable(polynomial) if polynomial ~= AllNonZero(polynomial(false)) B=0; H=[]; elseif polynomial ~...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Calling another .m file function
function IsStable(polynomial) AllNonZero(polynomial) AllSameSign(polynomial) length(polynomial); while 1i==1:polynomial...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
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...
fast 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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'...
fast 6 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
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])...
fast 6 Jahre vor | 1 Antwort | 1
1
AntwortFrage
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]...
fast 6 Jahre vor | 1 Antwort | 0
1
AntwortFrage
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)); ...
fast 6 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
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...
fast 6 Jahre vor | 1 Antwort | 0