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

alrededor de 6 años hace | 1

| aceptada

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

alrededor de 6 años hace | 0

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

alrededor de 6 años hace | 1

| aceptada

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

alrededor de 6 años hace | 0

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

alrededor de 6 años hace | 0

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

alrededor de 6 años hace | 0

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

alrededor de 6 años hace | 0

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

alrededor de 6 años hace | 0

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

alrededor de 6 años hace | 0

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

alrededor de 6 años hace | 0

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

más de 6 años hace | 0

| aceptada

Resuelto


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

más de 6 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 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 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 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 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 6 años hace

Resuelto


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

más de 6 años hace

Resuelto


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

más de 6 años hace

Cargar más