
Sambit Supriya Dash
Statistics
순위
1,939
of 257,598
평판
22
참여
5 질문
25 답변
답변 채택
20.0%
획득한 표
1
순위
1,822
of 109,882
참여
2 문제
85 해답
점수
1,119
배지 수
6
참여
0 게시물
참여
0 공개 채널
평균 평점
참여
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
extracting files having names with the same date from a dataset
a = 196611110428; strA = string(a); d = datetime(strA,'InputFormat','yyyyMMddHHmm'); disp(d) Month = month(d); Day = day(d)...
4달 전 | 0
How can I use boxplot for 1000 dataset in x and y with certain defined number of boxes?
ax = gca; hold on boxplot(ax, a, 'Position', 1) boxplot(ax, b, 'Position', 2) ax.XLim = [min(a), max(a)]; ax.YLim = [min(...
4달 전 | 1
| 수락됨
해결됨
QWERTY coordinates
Given a lowercase letter or a digit as input, return the row where that letter appears on a standard U.S. QWERTY keyboard and it...
4달 전
해결됨
Word Distance - Sum
Let's suppose that the distance of a word can be calculated by summing the differences between its letters, having assigned the ...
4달 전
Im trying to graph f(x,y)=x+2y-2 and g(x,y)x^2+4y^2-4 on the same graph
fsurf(@(x,y) x+(2*y)-2) hold on fsurf(@(x,y) (x^2)+(4*(y^2))-4) hold off
6달 전 | 0
| 수락됨
How to plot graph of differential equations?
https://in.mathworks.com/matlabcentral/answers/377686-how-graph-differential-equations-with-matlab#answer_300602 This lin...
7달 전 | 0
how to load multiple mat files which has file names in 'YYYYMMDD.mat' file format?
load YYYYMMDD.mat Date = datetime(YYYYMMDD,'ConvertFrom','yyyymmdd');
7달 전 | 0
| 수락됨
Hi, I am looking to purchase Matlab license and would like some advice on which will be a better option?
If you have any resource person who is pursuing any degrees from any universities, you can ask for their credentials for the max...
7달 전 | 0
질문
How to find the centroid of curve ?
I have a curve fitted to a given data and got this curve(x). curve(x) = a*exp(b*x) + c*exp(d*x) Coefficients (with 95% co...
8달 전 | 답변 수: 1 | 0
1
답변To reduce the number of lines
This may help you, in terms of looping, addition and substraction, x = [-2 -1 1 3]; y = [-1 3 -1 19]; syms t; for i = 1:leng...
8달 전 | 0
질문
Can anyone suggest how to write/develop/ from where to refer 3D Space Frame Loading (non-orthogonal structures) code ?
A trussed frame is there whose members are non-orthogonals to each other and legs are fixed with the base (fixed joints), I want...
8달 전 | 답변 수: 0 | 0
0
답변질문
How to find Area Under the Curve of a Smoothing Spline Curve Fitted Model from Discrete Data Points ?
For example: I have 12 y values for different 12 x values and by using MATLAB inbuild app of Curve Fitting I got very good resul...
8달 전 | 답변 수: 1 | 0
1
답변제출됨
Greatest Common Divisor (direct step backwards) of any 2 nos
Without using any arrays, the direct method of finding GCD is implemented by while loop for any two numbers.
9달 전 | 다운로드 수: 2 |
제출됨
Greatest Common Divisor
The much improved version of GCD previous one uploaded.
9달 전 | 다운로드 수: 1 |
제출됨
Greatest Common Divisor
Greatest number which could divide both the entered numbers fully (evenly).
9달 전 | 다운로드 수: 0 |
Statistical comparison between matrices
After converting all the 24 matrices of 32x30 into 24 vectors of 960 elements each, take each vector of 960 elements and sort th...
9달 전 | 0
| 수락됨
질문
How to convert FORTRAN files (.F) of before 1990s to MATLAB files ?
I have files which were developed before the era of .f90 (file format of FORTRAN after 1990). I want to compile them in MATLAB. ...
9달 전 | 답변 수: 1 | 0
1
답변Quick Reference - MATLAB Fundamentals
Yes that's available now. One can download whole 44 sheets of paper without the record projects of the course.
9달 전 | 0
해결됨
Remove the air bubbles
Given a matrix a, return a matrix b in which all the zeros have "bubbled" to the top. That is, any zeros in a given column shoul...
10달 전
해결됨
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...
10달 전
해결됨
~~~~~~~ WAVE ~~~~~~~~~
|The WAVE generator| Once upon a time there was a river. 'Sum' was passing by the river. He saw the water of the river that w...
10달 전
해결됨
Longest run of consecutive numbers
Given a vector a, find the number(s) that is/are repeated consecutively most often. For example, if you have a = [1 2 2 2 1 ...
10달 전
해결됨
Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...
10달 전
해결됨
Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...
10달 전
해결됨
Is the Point in a Circle?
Check whether a point or multiple points is/are in a circle centered at point (x0, y0) with radius r. Points = [x, y]; c...
10달 전
해결됨
Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12
10달 전
해결됨
Matlab Basics - Pick out parts of a vector
Consider x a vector of length >= 7 (there are at least 7 elements in the vector, write a script that extracts the 2nd element, a...
10달 전
해결됨
multiply by three
Given the variable x as your input, multiply it by 3 and put the result equal to y. Examples: Input x = 2 Output y is ...
10달 전
해결됨
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
10달 전
해결됨
Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...
10달 전