Answered
anyway to call checkbox in appdesigner programmatically?
I assume that you have already created a checkBox in app-designer, and you want to check or uncheck the checkBox programmaticall...

6 years ago | 1

| accepted

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

6 years ago | 0

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

6 years ago | 1

| accepted

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

6 years ago | 0

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

6 years ago | 0

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

6 years ago | 0

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

6 years ago | 0

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

6 years ago | 0

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

6 years ago | 0

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

6 years ago | 0

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

6 years ago | 0

| accepted

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Solved


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

6 years ago

Load more