![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/25186178_1641287932912_DEF.jpg)
Nainsi Gupta
Followers: 0 Following: 0
Statistiques
RANG
134 910
of 297 016
RÉPUTATION
0
CONTRIBUTIONS
7 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
57.14%
VOTES REÇUS
0
RANG
of 20 419
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
LASSO for variable selection
Dear MATLAB Learners, I am working on variable selection for process monitoring. I have only number of process response variab...
7 mois il y a | 1 réponse | 0
1
réponseQuestion
Need help with the coding of Attached research Paper
Can someone help me with the simulation of attached research paper? This uses lasso for variable selection and then establish a...
8 mois il y a | 1 réponse | 0
0
réponseQuestion
Different number of support vectors & decision values in R (using svm from "e1071") and matlab (fitcsvm) for one class classification
I am trying to run svm both on R and matlab. R code: data= df[, 1:2] head(data) sum(is.na(data)) data_bislery= as.numeric...
11 mois il y a | 1 réponse | 0
1
réponseQuestion
Which output represent distance from hyperplane in fitcsvm while training data?
While training data on fitcsvm, which output represent distance from the hyoerplane. Please explain. x= rand([100,2]) y= ones...
12 mois il y a | 1 réponse | 0
1
réponseQuestion
How to detect the probability of a shift in mean value when number of variables increases?
Probability of a shift in mean value of a multivariate normal vector decreases as the number of variables increaes in case of Ho...
plus d'un an il y a | 2 réponses | 0
2
réponsesQuestion
Andrews plot function for multivariate control chart limits UCL and LCL
I am working on Andrews plot for quality control chart. So I need to define UCL and LCL for that. I have attached the images of ...
plus d'un an il y a | 2 réponses | 0
2
réponsesA résolu
Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...
plus d'un an il y a
A résolu
Return the first and last characters of a character array
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...
plus d'un an il y a
A résolu
Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...
plus d'un an il y a
A résolu
Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....
plus d'un an il y a
A résolu
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...
plus d'un an il y a
A résolu
Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...
plus d'un an il y a
A résolu
Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...
plus d'un an il y a
A résolu
Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...
plus d'un an il y a
A résolu
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]
plus d'un an il y a
A résolu
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...
plus d'un an il y a
A résolu
Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displayed ...
plus d'un an il y a
A résolu
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 3 3 3 4...
plus d'un an il y a
A résolu
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
plus d'un an il y a
A résolu
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.
plus d'un an il y a
A résolu
Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the second...
plus d'un an il y a
A résolu
Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...
plus d'un an il y a
A résolu
Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...
plus d'un an il y a
A résolu
Make roundn function
Make roundn function using round. x=0.55555 y=function(x,1) y=1 y=function(x,2) y=0.6 y=function(x,3) ...
plus d'un an il y a
A résolu
Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...
plus d'un an il y a
A résolu
Matlab Basics - Rounding III
Write a script to round a large number to the nearest 10,000 e.g. x = 12,358,466,243 --> y = 12,358,470,000
plus d'un an il y a
A résolu
Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346
plus d'un an il y a
A résolu
Check that number is whole number
Check that number is whole number Say x=15, then answer is 1. x=15.2 , then answer is 0. http://en.wikipedia.org/wiki/Whole_numb...
plus d'un an il y a