photo

Jason R


自 2014 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

0 个提问
6 个回答

Cody

0 个问题
25 个答案

排名
3,873
of 297,503

声誉
14

贡献数
0 个提问
6 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
19,483
of 158,938

贡献数
0 个问题
25 个答案

评分
250

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
How can I plot a root locus for an open loop system?
To find the root locus of G=1/(10s+5), use the following code: s=tf('s'); G=tf(1/(10*s+5)); rlocus(G) This should be eno...

10 years 前 | 0

| 已接受

已回答
please I wrote this code to solve an equation of linear systems using LU factorization but it keeps giving me zeros as the value of x. please can someone help? thanks in advance
It seems that you initialize y as a vector of zeros (y = zeros (n,1);) and then use y to solve for b(n) and b(j) without updatin...

10 years 前 | 0

已回答
Can you create a plot with contourf without the contour lines?
Use the shading flat command. Example use: Z = peaks(20); contourf(Z,10); shading flat

11 years 前 | 0

已回答
please please ...... i need help in this programme is there an error
What is the problem? I was able to run your code when I uncommented the variables k, v, etc. Remember that anything after a % wi...

11 years 前 | 0

| 已接受

已回答
how to silence display of variables?
Use ; to suppress output. So, Y(i)=0*X(i)+0; instead of Y(i)=0*X(i)+0,

11 years 前 | 1

| 已接受

已回答
error in my code
As far as I can tell, there is no symbolic greater than comparison. Replace dg(i) with subs(dg(i)) to allow the comparison to oc...

11 years 前 | 0