photo

Devanuj Deka


Last seen: 4 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
11 个回答

排名
1,692
of 299,947

声誉
40

贡献数
0 个提问
11 个回答

回答接受率
0.00%

收到投票数
8

排名
 of 20,848

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 166,679

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Stacked bar chart similar to Excel
@AHMED FAKHRI, You can give this a try. The resultant output figure is shown below the code. T = readtable('Data.xlsx'); t2 = ...

4 years 前 | 0

| 已接受

已回答
Stacked bar chart similar to Excel
Yes, you can. MATLAB's bar function has an optional style parameter that you can use to display stacked bar chart. Here is the d...

4 years 前 | 0

已回答
how to save plot handle in an array and delete the plot later?
I would suggest creating a cell array for handle_array. The function zeros(10,1) creates a 10x1 array of type 'double', which me...

4 years 前 | 1

已回答
How to obtain a cross correlation function for a signal
You can refer to xcorr(x,y) and xcorr2(a,b) for 1-D and 2-D cross-correlation functions respectively, and see if you can work wi...

4 years 前 | 0

已回答
Access data from a cell array
@Rajvi Amle, you can try this: load x % Load the data Sum = cell(1,10); % Initialize a 1x10 cell array which will store t...

4 years 前 | 0

| 已接受

已回答
How to count alternating ones and zeros in a matrix
% Get the dimensions of 'v' sz = size(v); % Gives two numbers. sz(1) is the number of rows; sz(2) is the number of columns ...

4 years 前 | 0

| 已接受

已回答
I need help on a logical vector
You can try this: ismembertol(d,0.4) | ismembertol(d,0.6) Documentation: Members of set within tolerance - MATLAB ismembertol ...

4 years 前 | 1

| 已接受

已回答
How to split a line in Simulink?
Right-click and hold the line you want to split, and drag it to extend the newly created branch. See the following video demonst...

4 years 前 | 3

已回答
How to know which block connected with outport block in a subsystem?
Hello, You can have a look at a similar question that has been answered by MathWorks Support Team here: Link For your specific...

4 years 前 | 1

| 已接受

已回答
Simuling Create Subsystem from selection causes inports and outports to lay on the side
Dear Christian, When you hover over the inport block using your cursor, the corners of the block will become visible. You can s...

4 years 前 | 0

| 已接受

已回答
How to plot multiple graphs in one figure ?
It is my understanding that you want to plot two graphs in one figure. You tried hold on but it didn't work. It is not clear wh...

4 years 前 | 2