photo

Ali Aghaeifar


Universität Tübingen

自 2018 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB Answers

3 个提问
2 个回答

Cody

0 个问题
4 个答案

排名
5,379
of 300,753

声誉
9

贡献数
3 个提问
2 个回答

回答接受率
66.67%

收到投票数
3

排名
 of 21,075

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
76,035
of 170,858

贡献数
0 个问题
4 个答案

评分
40

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Review
  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

提问


Getting differnet results with fmincon in different runs
I use following code to find proper X which minimize myFun problem.x0 = zeros(3,20); problem.ub = 10*ones(3,20);...

6 years 前 | 1 个回答 | 0

1

个回答

提问


fmincon with sqp algorithm but without inclduing a gradient
I used fmincon with sqp as solver to optimize a constrained nonlinear problem. However, I didn't Include gradient evaluation in ...

7 years 前 | 2 个回答 | 0

2

个回答

已回答
niftiread returns empty array
Seems this function is not implemented properly in MATLAB. I found a solution for this problem. more information here: <htt...

7 years 前 | 2

| 已接受

提问


niftiread returns empty array
I use a well-known tool called <https://github.com/rordenlab/dcm2niix dcm2niix> to convert DICOMs to nifti. the nifti files can ...

7 years 前 | 1 个回答 | 1

1

个回答

已回答
Calculate distance of one 5D point from all points of 5D matrix
I think you are looking for <https://www.mathworks.com/help/stats/pdist2.html pdist2> A = rand(1,5); B = rand(1000,5); ...

7 years 前 | 0

| 已接受

已解决


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

7 years 前

已解决


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

7 years 前

已解决


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

7 years 前

已解决


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

7 years 前