已解决


Indexed Probability Table
This question was inspired by a Stack Overflow question forwarded to me by Matt Simoneau. Given a vector x, make an indexed pro...

11 years 前

已回答
Plot a line over spectrogram
I've done this before, I believe the trick is to set the Z-value for your line so that is always above the spectrogram.

11 years 前 | 0

| 已接受

已回答
Is it possible to do multidimensional interpolation on a set of scattered data?
For 2 dimensional data (surface of scattered points), I've found <http://www.mathworks.com/matlabcentral/fileexchange/8998-surfa...

11 years 前 | 1

已回答
detect square objects in a binary image
I was thinking about this recently, a hough transform could be a very robust way to find squares, if they are not rotated at all...

11 years 前 | 0

提问


Is the new splash screen option in the compiler just for the installer?
Or does it show up each time the exe is launched while the MCR is loading? I'm currently setting up wrapper applications so a s...

11 years 前 | 1 个回答 | 0

1

个回答

已解决


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

11 years 前

已解决


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

11 years 前

已解决


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

11 years 前

已解决


Return a list sorted by number of occurrences
Given a vector x, return a vector y of the unique values in x sorted by the number of occurrences in x. Ties are resolved by a ...

11 years 前

已解决


Reverse Run-Length Encoder
Given a "counting sequence" vector x, construct the original sequence y. A counting sequence is formed by "counting" the entrie...

11 years 前

已解决


Balanced number
Given a positive integer find whether it is a balanced number. For a balanced number the sum of first half of digits is equal to...

11 years 前

已解决


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

11 years 前

已回答
How did you learn MATLAB?
I have always dabbled in programming since I was 13, but never really got deep in any one language. As a mechanical engineer no...

11 years 前 | 0

提问


Is there a way to restrict the MCR Version used for compiled code?
Is there any way to restrict which version of the MCR can be used to launch compiled code? The project I am working on involves...

11 years 前 | 1 个回答 | 0

1

个回答

已回答
X,Y points of two intersecting lines
http://www.mathworks.com/matlabcentral/answers/70287

11 years 前 | 0

已回答
How to choose Spectrogram parameter ?
Where you set it to zero, you should be using parentheses and not brackets. not really sure what you were plotting since that s...

11 years 前 | 0

| 已接受

已回答
Time axis in spectrogram for event relatd data
Here is some lines I've used to set up a spectrogram with more control on how it is created. You should be able to use tStart to...

11 years 前 | 1

| 已接受

已回答
Is it possible to use a section of a colormap?
you can define a colormap using the jet(n) function where n is the number of steps. Based on the min/max of the current window ...

11 years 前 | 2

| 已接受

已回答
What is the window needed for Triangular puls before FFT ?
oh ok, I missed the pulse aspect of this. a Fourier transform is not the way to go here. I would just do some basic logic to lo...

11 years 前 | 0

已回答
What is the window needed for Triangular puls before FFT ?
a window function is not going to eliminate the other peaks. They are the actual result of the transform since your signal is n...

11 years 前 | 0

已回答
getting the ID of the line which just has been clicked on
I don't use the IP toolbox but I assuming you would be able to use a "line" instead of imline since I don't think imline has cal...

11 years 前 | 0

提问


Is using a try/catch around gui_mainfcn a bad idea?
I am working on a fairly large signal processing GUI created with GUIDE. The final product will be a compiled program and one t...

11 years 前 | 2 个回答 | 3

2

个回答

提问


fft(single) is giving inconsistent results
I have found that if I have an array of singles and I want to run it through fft so the transform is performed independently for...

11 years 前 | 1 个回答 | 1

1

个回答

提问


fft(single) is giving inconsistent results
I have found that if I have an array of singles and I want to run it through fft so the transform is performed independently for...

11 years 前 | 0 个回答 | 0

0

个回答

已解决


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

11 years 前

已解决


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

11 years 前

已解决


The Goldbach Conjecture
The <http://en.wikipedia.org/wiki/Goldbach's_conjecture Goldbach conjecture> asserts that every even integer greater than 2 can ...

11 years 前

已解决


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

11 years 前

已解决


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

11 years 前

已解决


Back and Forth Rows
Given a number n, create an n-by-n matrix in which the integers from 1 to n^2 wind back and forth along the rows as shown in the...

11 years 前

加载更多