Risolto


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

quasi 11 anni fa

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

quasi 11 anni fa | 0

| accettato

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

circa 11 anni fa | 1

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

circa 11 anni fa | 0

Domanda


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

circa 11 anni fa | 1 risposta | 0

1

risposta

Risolto


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

circa 11 anni fa

Risolto


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

circa 11 anni fa

Risolto


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

circa 11 anni fa

Risolto


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

circa 11 anni fa

Risolto


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

circa 11 anni fa

Risolto


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

circa 11 anni fa

Risolto


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

circa 11 anni fa

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

circa 11 anni fa | 0

Domanda


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

circa 11 anni fa | 1 risposta | 0

1

risposta

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

circa 11 anni fa | 0

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

circa 11 anni fa | 0

| accettato

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

circa 11 anni fa | 1

| accettato

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

circa 11 anni fa | 2

| accettato

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

circa 11 anni fa | 0

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

circa 11 anni fa | 0

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

circa 11 anni fa | 0

Domanda


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

circa 11 anni fa | 2 risposte | 3

2

risposte

Domanda


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

circa 11 anni fa | 1 risposta | 1

1

risposta

Domanda


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

circa 11 anni fa | 0 risposte | 0

0

risposte

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Risolto


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

oltre 11 anni fa

Carica altro