
Sambit Supriya Dash
Statistics
RANK
1 941
of 257 810
REPUTATION
22
CONTRIBUTIONS
5 Questions
25 Answers
ANSWER ACCEPTANCE
20.0%
VOTES RECEIVED
1
RANK
16 245 of 17 766
REPUTATION
2
AVERAGE RATING
0.00
CONTRIBUTIONS
5 Files
DOWNLOADS
5
ALL TIME DOWNLOADS
15
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
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 månader ago | 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 månader ago | 1
| accepted
Solved
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 månader ago
Solved
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 månader ago
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 månader ago | 0
| accepted
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 månader ago | 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 månader ago | 0
| accepted
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 månader ago | 0
Question
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 månader ago | 1 answer | 0
1
answerTo 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 månader ago | 0
Question
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 månader ago | 0 answers | 0
0
answersQuestion
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...
9 månader ago | 1 answer | 0
1
answerSubmitted
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 månader ago | 2 downloads |
Submitted
Greatest Common Divisor
The much improved version of GCD previous one uploaded.
9 månader ago | 1 download |
Submitted
Greatest Common Divisor
Greatest number which could divide both the entered numbers fully (evenly).
9 månader ago | 0 downloads |
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 månader ago | 0
| accepted
Question
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 månader ago | 1 answer | 0
1
answerQuick Reference - MATLAB Fundamentals
Yes that's available now. One can download whole 44 sheets of paper without the record projects of the course.
10 månader ago | 0
Solved
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 månader ago
Solved
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 månader ago
Solved
~~~~~~~ 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 månader ago
Solved
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 månader ago
Solved
Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...
10 månader ago
Solved
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 månader ago
Solved
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 månader ago
Solved
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 månader ago
Solved
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 månader ago
Solved
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 månader ago
Solved
Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.
10 månader ago
Solved
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 månader ago