photo

kowshik Thopalli


Last seen: 3 years 前 自 2016 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

6 个提问
13 个回答

Cody

0 个问题
9 个答案

排名
3,028
of 297,503

声誉
19

贡献数
6 个提问
13 个回答

回答接受率
83.33%

收到投票数
8

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
39,609
of 159,017

贡献数
0 个问题
9 个答案

评分
100

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

查看徽章

Feeds

排序方式:

提问


Reshaping/vectorizing a n-d matrix to a vector along each dimension
Lets say I have a matrix given by a=randn(4,4,5); How do I get a 80*1 vector along each dimension. That is ...

7 years 前 | 1 个回答 | 0

1

个回答

已回答
How to utilize nodes to plot a 3D object?
Ok. I have attached the script to do this. You are reading the data wrong. I have also attached the image. Hope this helps. ...

7 years 前 | 0

已回答
Develop a Matlab function that remove all zeros  in an input vector(using while  loop)
I agree with cvklpstunc that you dont need a while loop. If you are still looking for a while loop implementation, here is the c...

7 years 前 | 0

已回答
Distance from time and velocity vectors..HELP
trapz cannot be used here because you are passing only one value for x and y. Moreover direct integration is not t...

7 years 前 | 0

提问


Optic FLow only on interest points
I was wondering if there is any method to compute optical flow between two frames only considering key or interest points(which ...

7 years 前 | 1 个回答 | 0

1

个回答

提问


Hand segmentation from an RGB and depth image obtained from kinect device
Hi all. I am trying to use the <http://eeeweba.ntu.edu.sg/computervision/people/home/renzhou/HandGesture.htm dataset> from this ...

7 years 前 | 1 个回答 | 1

1

个回答

已回答
How to save iteration values as array if for loop- for t=0:0.5:3?
Use another index value outside the loop and keep updating it inside the loop such as index=1 for t=0:0.5:3 ...

7 years 前 | 1

| 已接受

已回答
How to change the positions of elements in a vector?
Using the find() function you can do this very easily. [R,c]= find(myVector==3) This gives you the positions of ...

8 years 前 | 0

已回答
How do I delete columns from a matrix based on an array
As you can imagine there is more than one way to do this. here is one method.Not elegant but works A=[4 3 5 6 7; 1 4 ...

8 years 前 | 1

已回答
Empty Matrix: 1-by-0 error
help linspace() y = linspace(x1,x2,n) generates n points. The spacing between the points is (x2-x1)/(n-1). so here...

8 years 前 | 0

已回答
I am new in MATLAB. Please suggest me the procedure for how to pass the dataset files to the TreeBagger classifier.
Below is the Matlab documentation. Go through this. It is well written. https://www.mathworks.com/help/stats/treebagger.html ...

8 years 前 | 0

已回答
How to find an unknown parameter from a equation fitted to a data-set in MATLAB 2016b ?
I might be wrong here. If you know all of these values and dont know only n cant you just find n through algebra. I mean solvi...

8 years 前 | 0

已回答
Compare results of three cells
Assuming you wish to find the maximum of the corresponding elements in each cell cell1={rand(1,120)}; cell2={rand(1...

8 years 前 | 0

已回答
Help with a minimize problem
I dont understand. two_var =@(x) 242*log(1-x(1)-x(2))+120*log(2*x(1)-x(1)^2-2*x(1)*x(2))+79*log(2*x(2)-x(2)^2-2*x(1)*x...

8 years 前 | 0

已回答
How to find the number of repeating sequence in an array?
You can do the following. Treat the sequence as a string. Divide the string into a cell with each cell containing 3 digits. Then...

8 years 前 | 0

| 已接受

提问


How to join or merge two Image Data Stores?
If I have two image datastores and I wish to concatenate them. How can I do that? Thanks

8 years 前 | 6 个回答 | 3

6

个回答

提问


Split an ImageDatastore with every 'pth' file per label
Hi, the splitEachLabel() for the imageDatastore() when used as if true [imds1,imds2] = splitEachLabel(imds,p) end ...

8 years 前 | 1 个回答 | 0

1

个回答

已回答
Loading data in a function and passing it
In the else condition- write b=load('b.mat'), w=load('w.mat') etc. Does this solve your problem?

8 years 前 | 1

提问


How to nest a cell array with existing cell array
Hi, I have a cell array Cells which is 1 x 190, and each cell is again a 1 x 20 cell array. Now for each cell in this 1 x 20 arr...

8 years 前 | 1 个回答 | 1

1

个回答