已回答
Why doesn't audiowrite write metadata (title, etc) to wav file?
Refer similar question, https://in.mathworks.com/matlabcentral/answers/480095-audiowrite-function-is-not-saving-the-title-or-ar...

5 years 前 | 0

已回答
Audiowrite function is not saving the title or artist information
The MATLAB function audiowrite correctly writes the title as well as Artist information to the file created. You can verify the ...

5 years 前 | 1

| 已接受

已回答
create gui using matlab
You can implement the GUI using MathWorks App Designer. Invoke App Designer by entering appdesigner in MATLAB Command Window an...

5 years 前 | 0

已回答
Noise Power for the Band limited white Noise Block
The Noise Power Parameter Specify the height or the y-axis of the PSD (Power spectral density) of the white noise. Hence the uni...

5 years 前 | 0

已回答
Reinforcement Learning Toolbox: Discount factor issue
In the Episode Manager you could view the discounted sum of rewards for each episode named as Episode Reward. This should be the...

5 years 前 | 0

已回答
Trying to find best fit of the shape y = a/(x-b)+c. Getting warning of badly conditioned polynomial sometimes but not always.
Try scaling and shifting the input x such that the mean of x is zero and the standard deviation as one. This scaling and shiftin...

5 years 前 | 0

已回答
can someone explain the error in this input for loop
If you can see the issue again, revert with the error message and the code you have used. Also correct the usage of fprintf comm...

5 years 前 | 0

已回答
Wave Upward Zero Crossing Function
The variable len3 is defined in the following loop. if xDetrended(1,1)==0 & xDetrended(2,1)>0 len3=1; end if (xDetrended(1,...

5 years 前 | 0

已回答
Communication Toolbox General CRC Generator
Since your data is an array of integers and the General CRC Generator block expects binary, you could use an integer to bit conv...

5 years 前 | 0

已回答
how to Use cumsum for a random variables of times to reach a certain value
I understand that you have packet arrival times generated randomly and I assume you want to find the number of packet arrival in...

5 years 前 | 0

| 已接受

已解决


Mandelbrot Numbers
The <http://en.wikipedia.org/wiki/Mandelbrot_set Mandelbrot Set> is built around a simple iterative equation. z(1) = c z...

5 years 前

已解决


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 ...

5 years 前

已解决


Find the palindrome
Given the string a, find the longest palindromic sub-string b. So when a = 'xkayakyy'; you should return b = 'kayak';

5 years 前

已解决


Duplicates
Write a function that accepts a cell array of strings and returns another cell array of strings *with only the duplicates* retai...

5 years 前

已解决


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 ...

5 years 前

已解决


Find the peak 3n+1 sequence value
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

5 years 前

已解决


It dseon't mettar waht oedrr the lrettes in a wrod are.
An internet meme from 2003 (read more <http://www.snopes.com/language/apocryph/cambridge.asp here>) asserted that readers are re...

5 years 前

已解决


Summing Digits within Text
Given a string with text and digits, add all the numbers together. Examples: Input str = '4 and 20 blackbirds baked in a...

5 years 前

已解决


Test for balanced parentheses
Given the input inStr, give the boolean output out indicating whether all the parentheses are balanced. Examples: * If ...

5 years 前

已解决


Find the two-word state names
Given a list of states, remove all the states that have two-word names. If s1 = 'Alabama Montana North Carolina Vermont N...

5 years 前

已解决


Kaprekar Steps
6174 is the <http://en.wikipedia.org/wiki/6174_%28number%29 Kaprekar constant>. All natural numbers less than 10,000 (except som...

5 years 前

已解决


Read a column of numbers and interpolate missing data
Given an input cell array of strings s, pick out the second column and turn it into a row vector of data. Missing data will be i...

5 years 前

已解决


Implement a ROT13 cipher
Replace each character in string s1 with the character that is shifted 13 positions from it (wrap back to the beginning if neces...

5 years 前

已解决


Clean the List of Names
Given a list of names in a cell array, remove any duplications that result from different capitalizations of the same string. So...

5 years 前

已解决


Return the largest number that is adjacent to a zero
This example comes from Steve Eddins' blog: <http://blogs.mathworks.com/steve/2009/05/27/learning-lessons-from-a-one-liner/ Lear...

5 years 前

已解决


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...

5 years 前

已解决


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...

5 years 前

已解决


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 = ...

5 years 前

已解决


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...

5 years 前

已解决


Find relatively common elements in matrix rows
You want to find all elements that exist in greater than 50% of the rows in the matrix. For example, given A = 1 2 3 5 ...

5 years 前

加载更多