photo

James_111


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

Followers: 0   Following: 0

统计学

MATLAB Answers

13 个提问
0 个回答

排名
230,116
of 300,750

声誉
0

贡献数
13 个提问
0 个回答

回答接受率
84.62%

收到投票数
0

排名
 of 21,073

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 170,837

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 3

查看徽章

Feeds

排序方式:

提问


Error using integral (line 85) A and B must be floating-point scalars.
My code is: b=10;a=3;q=0.1; scdf = @(x) (1-(b./(x+b)).^a)./(1-(b./(10+b)).^a); integral(@(x) (1+q).*(1-scdf(x)).^0.5,0,10); ...

5 years 前 | 1 个回答 | 0

1

个回答

提问


How to change the StepTolerance in fslove
Hi All, I have a code: format long; options = optimset('TolFun',1e-15,'MaxFunEvals',1e5,'Maxiter',1e5,'Display','iter'); opt...

6 years 前 | 1 个回答 | 0

1

个回答

提问


fsolve, In an assignment A(:) = B, the number of elements in A and B must be the same.
Hi All, my code is: format long; pvals = 10:0.2:14; nump = length(pvals); m = zeros(1, nump);n = zeros(1, nump);z = zeros(1...

7 years 前 | 1 个回答 | 0

1

个回答

提问


fminsearch, Function arguments must be symbolic variables, and function body must be sym expression.
Hi All, my code is: p=10; spdf = @(x) 3.*(50.^3)./(x+50).^(3+1)./(1-(50./(50+50)).^3); fun2 = @(x,z) min(x,max(0,fzero(@(y) (...

7 years 前 | 1 个回答 | 0

1

个回答

提问


If function, Index exceeds matrix dimensions.
Hi All, my code is: syms x y m n; funt=@(x,m,n,y) (100-10-x+y).^(-0.5)-(2.*n+4.*m.*y); if funt(x,m,n,0)<=0 funfun(x,m,n)...

7 years 前 | 2 个回答 | 0

2

个回答

提问


fzero, because complex function value encountered during search
Hi my friend, I have one question regarding the fzero. My code is as follows: p=11; spdf = @(x) 3.*(50.^3)./(x+50).^(3+1)./(1-...

7 years 前 | 2 个回答 | 0

2

个回答

提问


Fzero, Function value at starting guess must be finite and real.
Hi Everyone, my code is: format long; b=50;a=3;e=50; spdf = @(x) 3.*(50.^3)./(x+50).^(3+1)./(1-(50./(50+50)).^3); fun2 = @...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Diff, derivative does not exist
My code is: fun=@(x) abs(x-1); pfun=@(x) diff(fun(x),x); feval(pfun,1) It didn't return any answer after running the code. M...

7 years 前 | 0 个回答 | 0

0

个回答

提问


Fzero, Function value at starting guess must be finite and real
My code is: format long; b=50;a=3;e=50; spdf = @(x) a.*(b.^a)./(x+b).^(a+1)./(1-(b./(e+b)).^a); fun21 = @(x,u,m) min(x,max(0...

7 years 前 | 1 个回答 | 0

1

个回答

提问


In an assignment A(:) = B, the number of elements in A and B must be the same.
My code is: pvals = 10:1:15; nump = length(pvals); for pidx = 1 : nump p=pvals(pidx); [x(pidx),y(pidx)]=solve('9*x(...

7 years 前 | 1 个回答 | 0

1

个回答

提问


a loop problem in matlab
My code is: for p=1:0.01:2; plot3(p,p.^2,p.^3); end I want to use a loop of p to create a three dimentional figure. ...

7 years 前 | 1 个回答 | 0

1

个回答

提问


FZERO cannot continue because user-supplied function_handle, A and B must be floating-point scalars.
My code is: p=0.51:0.001:1.013; fun1 = @(x) x.^2.*exp(-x)./(1-exp(-10)); fun2 = @(x,u) fzero(@(y) 2.*u.*y.*(20-p-x+y).^0.5...

7 years 前 | 3 个回答 | 0

3

个回答

提问


fzero, Operands to the || and && operators must be convertible to logical scalar values.
My code is: integral(@(x) fzero(@(y) y-x-1,[0,20]),1,10) Here is the error I get: Operands to the || and && operators must...

7 years 前 | 2 个回答 | 0

2

个回答