photo

Soniya Jain


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

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
8 답변

순위
5,199
of 300,771

평판
10

참여
0 질문
8 답변

답변 채택
0.00%

획득한 표
1

순위
 of 21,084

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 170,969

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
How do I plot a function with a variable that has multiple values?
Note that the below code will just plot a graph with the marker we mention and not any line on it. X = [0, 0.5, 1]; Y = [0.5];...

4년 초과 전 | 0

답변 있음
find sum of the run length of non zero elements between zeros of a matrix
a=[ 1 2 3 0 0 0 4 5 6 0 0 0 7 8 0 0 9 0 0 ]; j = 0; i = 1; while i ~= (length(a)+1) if a(i)~=0 sum = 0; ...

4년 초과 전 | 0

답변 있음
i have two arrays in matlab code and i want to plot them by two lines on the same graph
You can use plot function, plot(Array1); hold on; plot(Array2); hold off; hold will retain current plot when adding new plo...

4년 초과 전 | 0

답변 있음
find non zero elements in array
As mentioned in the error, that y is non-tunable, so have you tried to select the 'Variable Size' checkbox by specifying the upp...

4년 초과 전 | 0

답변 있음
How to fill an array with the elements of a for loop?
Use element(c) instead

4년 초과 전 | 0

| 수락됨

답변 있음
Hello, i have a table with many rows and 3 columns. In the first column some values are NaN. How can i put NaN values in the other columns in the same rows?
Hey, you can use isnan() function to find the location where values are NaN in the 1st column, A = [NaN,4,7; NaN,5,8; 3,6,9]; ...

4년 초과 전 | 1

답변 있음
Susbtracting elements of a column with every other element but in a particular order without repeating same susbtraction in reverse order.
Hey you can store the values A1, A2,.. in a vector, i hope you find the below code useful, A(1) = -2.35007; A(2) = -8.61753; ...

4년 초과 전 | 0

| 수락됨

답변 있음
Delete first row matrix and records new value
To find mean of matrix, you can refer Matlab documentation: https://in.mathworks.com/help/matlab/ref/mean.html What do you mean...

4년 초과 전 | 0