Manali Gupta
Followers: 0 Following: 0
Statistik
RANG
2.076
of 295.448
REPUTATION
30
BEITRÄGE
0 Fragen
10 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
11
RANG
of 20.227
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Given a matrix "A", how to create a row vector of 1s that has the same number of elements as "A" has rows?
Given a matrix "A", you can find the number of rows of A by using "size(A,1)". You can find the number of columns of "A" by usin...
etwa ein Monat vor | 9
| akzeptiert
Gelöst
Trimming Spaces
Given a string, remove all leading and trailing spaces (where space is defined as ASCII 32). Input a = ' singular value deco...
mehr als 5 Jahre vor
Gelöst
Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...
mehr als 5 Jahre vor
Gelöst
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 ...
mehr als 5 Jahre vor
Gelöst
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...
mehr als 5 Jahre vor
"Add-On Explorer not working" in Matlab 2018b / Win10 64-bit
Hi Sudesh, Please refer this link.
mehr als 5 Jahre vor | 0
how can i use filter for voice signal ??
Hi Hazuri, You can take help from these links audio filter and filter design
mehr als 5 Jahre vor | 0
Which Simulink block can receive different types of Signals as Input and give output accordingly?
Hi Sunil, You can use matlab function block to receive different types of SIgnals as Inputs and process them as you want. If y...
mehr als 5 Jahre vor | 0
| akzeptiert
Differentiate function by a function
Hi Moritz, Here theta(t) is not a symbolic variable but a symbolic function. You can differentiate a symbolic expression only w...
mehr als 5 Jahre vor | 0
Writing code to implement Runge-Kutta methods 1 and 4 for a second order nonlinear ODE
Hi, Attached file trk.m calculates the derivatives of the variables. The RK4 algorithm to solve the set of equations is implem...
mehr als 5 Jahre vor | 0
how to create a simscape model of a cantilever beam?
Hi Thanga, You can use the general flexible beam model from the simscape multibody library to model a beam.
mehr als 5 Jahre vor | 1
Gelöst
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...
mehr als 5 Jahre vor
Gelöst
Sums with Excluded Digits
Add all the integers from 1 to n in which the digit m does not appear. m will always be a single digit integer from 0 to 9. no...
mehr als 5 Jahre vor
Gelöst
Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...
mehr als 5 Jahre vor
Gelöst
Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...
mehr als 5 Jahre vor
Gelöst
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...
mehr als 5 Jahre vor
Gelöst
Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...
mehr als 5 Jahre vor
Gelöst
Making change
Given an amount of currency, return a vector of this form: [100 50 20 10 5 2 1 0.5 0.25 0.1 0.05 0.01] Example: Input a = ...
mehr als 5 Jahre vor
Gelöst
Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...
mehr als 5 Jahre vor
Gelöst
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...
mehr als 5 Jahre vor
what is model assessment block in simulink onramp
Hii, It is a Subsystem Block. For knowing more properties right click on the block and select properties.
mehr als 5 Jahre vor | 0
how many install for one license
Hii, Refer the links below. https://www.mathworks.com/matlabcentral/answers/124595-can-single-individual-matlab-license-be-use...
mehr als 5 Jahre vor | 0
Gelöst
Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...
mehr als 5 Jahre vor
Gelöst
Subset Sum
Given a vector v of integers and an integer n, return the the indices of v (as a row vector in ascending order) that sum to n. I...
mehr als 5 Jahre vor
Gelöst
Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...
mehr als 5 Jahre vor
Gelöst
Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....
mehr als 5 Jahre vor
Gelöst
Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...
mehr als 5 Jahre vor
Is there a spell checker option for MATLAB?
The below link can be referred. Spell check in matlab
mehr als 5 Jahre vor | 1
Gelöst
Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...
mehr als 5 Jahre vor
Gelöst
Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...
mehr als 5 Jahre vor