photo

nah


cib

自 2012 起处于活动状态

Followers: 0   Following: 0

消息

统计学

MATLAB Answers

8 个提问
4 个回答

排名
21,509
of 299,737

声誉
1

贡献数
8 个提问
4 个回答

回答接受率
50.0%

收到投票数
1

排名
 of 20,791

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 165,655

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1
  • First Answer

查看徽章

Feeds

排序方式:

提问


How to vectorize a for loop but with conditionals inside it ?
How to vectorize a for loop but with conditionals in it ? [sizMat1 sizMat2] = size(matrixToMultiply); cumulMat...

12 years 前 | 1 个回答 | 0

1

个回答

提问


Are parallel for loops available on GPUs ?
Does matlab PCT have capabilities to run parallel for loops on GPUs? (like the GFOR equivalent in Jacket ? Or even Matlab's ...

12 years 前 | 1 个回答 | 0

1

个回答

提问


gpuArray colunwise opertations on matrix ?
I have a custom function that takes in a m by 2 matrix (2 columns) and operates on it. It's quite a bit complicated function as ...

12 years 前 | 1 个回答 | 0

1

个回答

提问


Converting parfor operations to gpuArray
I have a working parallel version of a code that does some likelihood calculations on a reasonably large matrix in parallel (usi...

12 years 前 | 0 个回答 | 0

0

个回答

已回答
Separating vectors into individual subsets for plotting
a=[10 20 30 NaN 30 20 10 NaN 10 20 30 0 10 20 30 NaN 30 20 10 NaN 10 10 ] aaNaNidx = find(isnan(a)); for ix = ...

12 years 前 | 0

已回答
making a matrix from another one
for i=1:3 for j=1:3 b(i,j) = a(i,j); end end The fault is that you haven't defined the end t...

13 years 前 | 0

提问


Best approach to this problem - spmd or parfor ?
Am wondering what will be best approach for parallelizing the code for the problem am working on. I have a time series data ...

13 years 前 | 1 个回答 | 0

1

个回答

提问


Distributing arrays to workers for local processing ?
How to access parts of distributed data on the workers/labs ? I have a large timeseries data and want to run some functions o...

13 years 前 | 1 个回答 | 0

1

个回答

已回答
Counting values above a threshold within a matrix.
A simple way is: myMat = 0 0 2 0 0 0 3 4 5 0 1 2 3 4 5 ...

13 years 前 | 0

提问


Difference between simple matlabpool parfor and batch parfor.
I see a huge difference between apparently similar approaches and would like to understand what's happening and why the discrepa...

13 years 前 | 1 个回答 | 1

1

个回答

已回答
How to combine parfor & Parallel Optimization ?
Since running parfor inside a function called under an outer parfor is no good (it only runs it serially), the solution I have a...

13 years 前 | 0

提问


How to combine parfor & Parallel Optimization ?
I am new to Matlab Parallel computing. Am working on an optimization problem using fminsearch. The objective function is a ...

13 years 前 | 3 个回答 | 0

3

个回答