Sambit Supriya Dash
Followers: 0 Following: 0
Feeds
문제를 풀었습니다
Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...
2년 초과 전
문제를 풀었습니다
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...
2년 초과 전
문제를 풀었습니다
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
2년 초과 전
문제를 풀었습니다
Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...
2년 초과 전
문제를 풀었습니다
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...
2년 초과 전
문제를 풀었습니다
Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...
2년 초과 전
문제를 풀었습니다
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...
2년 초과 전
문제를 풀었습니다
Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.
2년 초과 전
질문
How to generate a row vector of 6 elements (1x6) out of the given function (fitting the fuction) with a specific MEAN ?
I have a function f(x), from the fuction (fitting the fuction) how to extract data points which will have a specific MEAN and if...
2년 초과 전 | 답변 수: 1 | 0
1
답변문제를 풀었습니다
Reference Index Number
Given a reference set R of elements (each unique but identical in type), and a list V of elements drawn from the set R, possibly...
2년 초과 전
문제를 풀었습니다
Unique values without using UNIQUE function
You must return unique values in a vector in *stable* mode without using the unique function. About stable order flag: ...
2년 초과 전
문제를 풀었습니다
Getting logical indexes
This is a basic MATLAB operation. It is for instructional purposes. --- Logical indexing works like this. thresh = 4...
2년 초과 전
답변 있음
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)...
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)...
거의 3년 전 | 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(...
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(...
거의 3년 전 | 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...
거의 3년 전
문제를 풀었습니다
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 ...
거의 3년 전
답변 있음
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
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
거의 3년 전 | 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...
How to plot graph of differential equations?
https://in.mathworks.com/matlabcentral/answers/377686-how-graph-differential-equations-with-matlab#answer_300602 This lin...
대략 3년 전 | 0
답변 있음
how to load multiple mat files which has file names in 'YYYYMMDD.mat' file format?
load YYYYMMDD.mat Date = datetime(YYYYMMDD,'ConvertFrom','yyyymmdd');
how to load multiple mat files which has file names in 'YYYYMMDD.mat' file format?
load YYYYMMDD.mat Date = datetime(YYYYMMDD,'ConvertFrom','yyyymmdd');
대략 3년 전 | 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...
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...
대략 3년 전 | 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...
대략 3년 전 | 답변 수: 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...
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...
대략 3년 전 | 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...
대략 3년 전 | 답변 수: 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...
대략 3년 전 | 답변 수: 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.
3년 초과 전 | 다운로드 수: 1 |
제출됨
Greatest Common Divisor
The much improved version of GCD previous one uploaded.
3년 초과 전 | 다운로드 수: 1 |
제출됨
Greatest Common Divisor
Greatest number which could divide both the entered numbers fully (evenly).
3년 초과 전 | 다운로드 수: 1 |
답변 있음
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...
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...
3년 초과 전 | 0
| 수락됨