photo

Aimen Mujahid


自 2017 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

11 个提问
0 个回答

排名
86,333
of 300,763

声誉
0

贡献数
11 个提问
0 个回答

回答接受率
18.18%

收到投票数
0

排名
 of 21,082

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 170,923

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1

查看徽章

Feeds

排序方式:

提问


i used "active set" algorithm in fmincon and got exit flag 5, is this answer should be considered right or not?
Options=optimset('Algorithm','active-set','Display','Iter','TolFun',1e-12,'MaxFunEvals',1000, 'TolCon',1e-12,'TolX',1e-15); ...

8 years 前 | 2 个回答 | 0

2

个回答

提问


kindly suggest the related codes and help to solve the below question?
analysis and simulations of a communication system with binary amplitude shift keying modulation and non coherent (post detector...

8 years 前 | 0 个回答 | 0

0

个回答

提问


how to generate a random number between the range -50 to 50?
a=rand(1,[-50,50])

8 years 前 | 1 个回答 | 0

1

个回答

提问


how to define connection factors for supply chain for GA/fmincon optimization?
function [Xmd]=checkb(Q) Xmd(1,1)=Q(1);% connection b/w manufacturer 1 and distributer 1 Xmd(2,1)=Q(2);% connection b/w manufa...

8 years 前 | 1 个回答 | 0

1

个回答

提问


is there any simple code for this to solve larger matrices?
function b =check(Q) Qmd2(1,1)=Q(1); Qmd2(2,1)=Q(2); Qmd2(3,1)=Q(3); Qmd2(1,2)=Q(4); Qmd2(2,2)=Q(5); Qmd2(3,...

9 years 前 | 1 个回答 | 0

1

个回答

提问


how take input matrix of same dimension for the scaler multiplication?
function b =check(Q) Qmd2=Q(1); c=[1 2;1 3;1 4]; b=c.*Qmd2; end

9 years 前 | 0 个回答 | 0

0

个回答

提问


how will this code take input in matrix form for scaler multiplication??
function b =check(Q) Q(3:2)=zeros(3,2); Qmd2=Q(3:2); disp(Qmd2); c=[1 2;1 3;1 4]; b=c.*Qmd2; end

9 years 前 | 0 个回答 | 0

0

个回答

提问


how to perform this multiplication form or by using loop?
function y=a Q=[1 2;3 4;5 6]; X=[1 0 1;0 1 0]; disp(Q); s=[2000 3000;1000 4000;2000 3000]; disp(s); a=[(s(1,...

9 years 前 | 1 个回答 | 0

1

个回答

提问


How can we do it bu function call?
M=input('Enter number of manufacturers'); D=input('Enter number of distributers'); O=1; T=1; R=1; Z=1; Cmd=...

9 years 前 | 0 个回答 | 0

0

个回答

提问


What is wrong in this code?
O=1; U=input('Enter number of retailers'); for u=1:U; Cuo=zeros(u:O); Cuo(u,O)=input('Enter traveling cost for retailer to ...

9 years 前 | 0 个回答 | 0

0

个回答

提问


What's wrong in this code? why is this not displaying whole matrix?and how to sum whole matrix?
M=input('Enter number of manufacturers'); D=input('Enter number of distributers'); O=1; T=1; R=1; Z=1; for m=1:M; for...

9 years 前 | 1 个回答 | 0

1

个回答