Daniel Neubauer - MATLAB Central
photo

Daniel Neubauer


Last seen: 10 months 前 自 2022 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB AnswersFrom 10/22 to 03/25Use left and right arrows to move selectionFrom 10/22Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

3 个提问
4 个回答

排名
5,067
of 297,716

声誉
10

贡献数
3 个提问
4 个回答

回答接受率
100.0%

收到投票数
3

排名
 of 20,469

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 159,428

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 1
  • First Answer
  • Thankful Level 2

查看徽章

Feeds

排序方式:

已回答
Index an array using specific indices
x=[1 0 1 1 0 0 0 0 1 0]; s=[9 4 6]; snew=s(x(s)==1)

2 years 前 | 0

已回答
Triangle Interpolation: Find Exact Value
your 2D-triangle with temperature can be treated as a 3d plane defined by the three points in [x y z] such as vertex=[x y t] t...

2 years 前 | 1

| 已接受

已回答
summation of products of matrices
take a look at Z = pagemtimes(X,Y) is that what you need? p=3; m=4; i=5; E=ones(p,p,i); A=rand(p,m,i); Sum=sum(pagemtime...

2 years 前 | 2

已回答
Replace Row in a Matrix with an Vector
M=magic(5) r=[0 0 0 0 0] M_new=[M(1:end-1,:);r]

2 years 前 | 0

提问


when doing A(B)=C, get average C values if index is used >1 times
say I have matrices A = [0 0 0] B=[1 1 2 3] C=[10 20 30 40] conventionally when doing A(B)=C I get A = [20 30 40] So by ...

2 years 前 | 1 个回答 | 0

1

个回答

提问


get p*(q*m) matrix from m*n matrix and p*q indexing matrix
hey everyone, is there an elegant way to get the following: C=rand(8,n) %given index=[... 1 5 1 2 3 4 2 6 2 3 4 1 ...

2 years 前 | 1 个回答 | 0

1

个回答

提问


get elements at x from array A without loop
so, i have an array A=(1,2,3,4,5,6,7,8,9) and another array containing indexes B=(1,1,3,6,7,5,4). How to get a third one based o...

2 years 前 | 1 个回答 | 0

1

个回答