photo

Shwetank Shrey


Last seen: 5년 초과 전 2019년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
10 답변

Cody

0 문제
45 답안

순위
2,738
of 300,365

평판
22

참여
0 질문
10 답변

답변 채택
0.00%

획득한 표
5

순위
 of 20,933

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
10,763
of 168,212

참여
0 문제
45 답안

점수
560

배지 수
3

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 2
  • First Answer
  • Community Group Solver
  • Introduction to MATLAB Master
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
Older MATLAB script not able to run in 2019 version
Change strname = ['data/' strjoin(fix(clock), '-') '.txt']; to strname = ['data/' char(strjoin(string(fix(clock)), '-')) '.tx...

6년 초과 전 | 1

답변 있음
Loops for struct data
You can use fieldnames to get information about the field names in a structure. https://www.mathworks.com/help/matlab/ref/fie...

6년 초과 전 | 0

답변 있음
I want to sum up specific array in a matrix
Hope this helps you. function [sum_37, sum_39] = compute_sum(x) sum_37 = 0; sum_39 = 0; found_37 = false; f...

6년 초과 전 | 1

| 수락됨

답변 있음
converting lat,lon column vectors to corresponding grid vector (lon*lat)
You can use matrix multiplication to multiply the column vectors and then reshape it to get your desired vector. lat_lon_non_co...

6년 초과 전 | 0

답변 있음
how to remove first n entries from iterete sequence or vector.?
A = [1,2 ,3,4,5,6,7,8,9,10]; A = A(4:end);

6년 초과 전 | 1

답변 있음
how to write in matlab?
If you are trying to assign flag(j) and t(i) values, then you should use : flag(j) = 1; t(i) = j; Please check documentation ...

6년 초과 전 | 0

답변 있음
Double sum of this formula
Just verify once if this is the formula that you needed. You would have to define K, b and n beforehand. symsum((d(k).*symsum((...

6년 초과 전 | 1

| 수락됨

답변 있음
How to output a vector/array from a created function
The vector that you would be creating using 0 : 0.01 : 100 would have a size of 1x10001. >> size(0 : 0.01 : 100) ans = ...

6년 초과 전 | 1

| 수락됨

답변 있음
how to write or condition in if statement matlab?
Check out the documentation: https://www.mathworks.com/help/matlab/ref/if.html if (j == i) || (flag(j) == 1) % do somet...

6년 초과 전 | 0

답변 있음
How can I use MATLAB in Linux that is used by multiple usres?
Installing multiple Individual licenses on a single machine is as simple as running the MATLAB installer from each user's accoun...

6년 초과 전 | 0