photo

Mughees Asif


Last seen: 대략 5년 전 2019년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

10 질문
0 답변

순위
29,293
of 300,753

평판
1

참여
10 질문
0 답변

답변 채택
60.0%

획득한 표
1

순위
 of 21,075

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 170,858

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 3

배지 보기

Feeds

보기 기준

질문


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

거의 7년 전 | 답변 수: 1 | 0

1

답변

질문


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

거의 7년 전 | 답변 수: 1 | 0

1

답변

질문


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

거의 7년 전 | 답변 수: 0 | 0

0

답변

질문


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

거의 7년 전 | 답변 수: 0 | 0

0

답변

질문


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

거의 7년 전 | 답변 수: 2 | 0

2

답변

질문


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

거의 7년 전 | 답변 수: 0 | 0

0

답변

질문


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

거의 7년 전 | 답변 수: 1 | 1

1

답변

질문


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

거의 7년 전 | 답변 수: 1 | 0

1

답변

질문


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

거의 7년 전 | 답변 수: 2 | 0

2

답변

질문


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

거의 7년 전 | 답변 수: 1 | 0

1

답변