photo

Kartikay Sapra


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

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
10 个回答

排名
10,961
of 300,028

声誉
4

贡献数
0 个提问
10 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 20,860

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 167,043

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

已回答
could you please tell me how to minimize the comman window as much i can
writetable(table,"output.xlsx") % OR writetable(table,"output.csv") % OR writetable(table,"output.txt") You can store the o...

4 years 前 | 0

已回答
How to plot an array effectively?
plot(t, X1) Assuming X1(i) is the value at t(i), we first specify the value for x-axis and then the value for y-axis

4 years 前 | 0

| 已接受

已回答
how to arrange x-coordinate w.r.t y-coordinates?
A = [1 2; 3 4; 5 6] map = containers.Map [row col] = size(A) for i = 1:row A(i,1) map(int2str(A(i,1))) = int2...

4 years 前 | 0

已回答
Creating a matrix with rows and collumns
subplots = [1 2; 3 4; 5 6] [rows cols] = size(subplots); test = zeros([rows*(rows+1)/2 cols]); k = 1; for i = 1:rows ...

4 years 前 | 0

已回答
How can I separate the data into two groups.?
data = [-1 -2 -1; 0 -1 0; 0 0 0] data(data==0) = NaN [maxVal ids] = max(data) data(isnan(data))=0 part_a = data(1:end,ids=...

4 years 前 | 0

已回答
How do I create a matrix C that is comprised of values from matrices A and B, using a nested for loop?
C = zeros(4) A = reshape(1:16, 4, 4) B = reshape(17:32, 4, 4) C(1:2, 1:2) = A(1:2,1:2) + B(1:2,1:2); C(3:4, 3:4) = A(3:4,3...

4 years 前 | 0

已回答
Sum of even numbers
function s = even_sum(n) if n <= 0 s = 0 else if n~=floor(n) s = NaN else s = sum(2:2:...

4 years 前 | 0

已回答
how to use/load the separate voice i labeled ?(new learner)
You can go through the audioread documentation, see here https://in.mathworks.com/help/matlab/ref/audioread.html. [y, Fs] = aud...

4 years 前 | 0

已回答
How to create a Matrix
You can use: A = reshape(22:-1:11, 4, 3)

4 years 前 | 0

已回答
I need code to sketch circle with interfaces (interior arcs)
function plotcircle(r,x,y) plot(r*exp(j*(0:pi/100:2*pi))+x+j*y); end Use this method to plot the main circle with radius ...

4 years 前 | 0