Mughees Asif - MATLAB Central
photo

Mughees Asif


Last seen: 4 years 前 自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB AnswersFrom 02/19 to 04/25Use left and right arrows to move selectionFrom 02/19Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

10 个提问
0 个回答

排名
29,231
of 298,102

声誉
1

贡献数
10 个提问
0 个回答

回答接受率
60.0%

收到投票数
1

排名
 of 20,534

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 160,343

贡献数
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...

6 years 前 | 1 个回答 | 0

1

个回答

提问


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

6 years 前 | 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 ~...

6 years 前 | 0 个回答 | 0

0

个回答

提问


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

6 years 前 | 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...

6 years 前 | 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'...

6 years 前 | 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])...

6 years 前 | 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]...

6 years 前 | 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)); ...

6 years 前 | 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...

6 years 前 | 1 个回答 | 0

1

个回答