Tatvam Dadheech
Followers: 0 Following: 0
Estadística
0 Preguntas
10 Respuestas
0 Problemas
32 Soluciones
CLASIFICACIÓN
4.152
of 295.569
REPUTACIÓN
12
CONTRIBUCIONES
0 Preguntas
10 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.247
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
15.206
of 154.105
CONTRIBUCIONES
0 Problemas
32 Soluciones
PUNTUACIÓN
320
NÚMERO DE INSIGNIAS
1
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Binary image colouring to red
Refer to the link below. https://www.mathworks.com/matlabcentral/answers/49610-how-to-color-a-binary-image This may solve your...
más de 5 años hace | 0
How i can calculate conditional probability in matlab
Refer to the link below. https://www.mathworks.com/matlabcentral/answers/349387-how-to-calculate-conditional-probability This ...
más de 5 años hace | 0
Resuelto
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...
más de 5 años hace
Resuelto
Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...
más de 5 años hace
Resuelto
Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...
más de 5 años hace
Resuelto
Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...
más de 5 años hace
Resuelto
Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...
más de 5 años hace
Resuelto
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
más de 5 años hace
Resuelto
Find state names that end with the letter A
Given a list of US states, remove all the states that end with the letter A. Example: Input s1 = 'Alabama Montana Nebras...
más de 5 años hace
Resuelto
Remove all the words that end with "ain"
Given the string s1, return the string s2 with the target characters removed. For example, given s1 = 'the main event' your ...
más de 5 años hace
Resuelto
Scrabble Scores
Given a word, determine its score in <http://en.wikipedia.org/wiki/Scrabble Scrabble>. The input string will always be provi...
más de 5 años hace
Resuelto
Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...
más de 5 años hace
Resuelto
Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...
más de 5 años hace
Resuelto
Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...
más de 5 años hace
Resuelto
Extract leading non-zero digit
<http://en.wikipedia.org/wiki/Benford%27s_law Benford's Law> states that the distribution of leading digits is not random. This...
más de 5 años hace
Excel Columns to Matlab Array
Refer to the below link. https://in.mathworks.com/help/matlab/ref/readmatrix.html https://in.mathworks.com/help/matlab/ref/xls...
más de 5 años hace | 0
Scrape Website using MATLAB
Yes, you can. There is an inbuilt function called webread() which will scrape the website and return the content in it. After th...
más de 5 años hace | 0
| aceptada
Resuelto
Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...
más de 5 años hace
Pushbutton to load .mat file
Refer to the link below. https://www.mathworks.com/matlabcentral/answers/293889-how-to-load-a-mat-file-with-a-push-button-calc...
más de 5 años hace | 0
| aceptada
Resuelto
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
más de 5 años hace
Resuelto
Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...
más de 5 años hace
Resuelto
Kaprekar Steps
6174 is the <http://en.wikipedia.org/wiki/6174_%28number%29 Kaprekar constant>. All natural numbers less than 10,000 (except som...
más de 5 años hace
Saving data from loops
There are two ways to do it. x = []; for i = 1:n x = [x; choice(i)] end Above code will append the value of choice at i...
más de 5 años hace | 0
Is it possible to calculate ohm law with data acquired with a daq using matlab script?
Yes you can acquire voltage data using digital trigger. Following documentation explains how daq command can help you do the sam...
más de 5 años hace | 0
how to get the license for the online matlab
Matlab Online is not a free software but requires license. If you have have a student version or any other version of Matlab, yo...
más de 5 años hace | 0
Resuelto
Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...
más de 5 años hace
Resuelto
QWERTY coordinates
Given a lowercase letter or a digit as input, return the row where that letter appears on a <http://en.wikipedia.org/wiki/Keyboa...
más de 5 años hace
Resuelto
Which doors are open?
There are n doors in an alley. Initially they are all shut. You have been tasked to go down the alley n times, and open/shut the...
más de 5 años hace
Resuelto
Remove the small words from a list of words.
Your job is to tidy up a list of words that appear in a string. The words are separated by one or more spaces. Remove all words ...
más de 5 años hace