photo

Kartikay Sapra


Last seen: 4년 초과 전 2021년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
10 답변

순위
10,983
of 300,759

평판
4

참여
0 질문
10 답변

답변 채택
0.00%

획득한 표
0

순위
 of 21,081

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 170,900

참여
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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 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년 초과 전 | 0

답변 있음
How to create a Matrix
You can use: A = reshape(22:-1:11, 4, 3)

4년 초과 전 | 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년 초과 전 | 0