문제를 풀었습니다


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

대략 10년 전

답변 있음
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.

대략 10년 전 | 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...

10년 초과 전 | 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...

10년 초과 전 | 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...

10년 초과 전 | 답변 수: 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 ...

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

답변 있음
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...

10년 초과 전 | 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...

10년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
X,Y points of two intersecting lines
http://www.mathworks.com/matlabcentral/answers/70287

10년 초과 전 | 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...

10년 초과 전 | 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...

10년 초과 전 | 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 ...

10년 초과 전 | 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...

10년 초과 전 | 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...

10년 초과 전 | 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...

10년 초과 전 | 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...

10년 초과 전 | 답변 수: 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...

10년 초과 전 | 답변 수: 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...

10년 초과 전 | 답변 수: 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...

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

문제를 풀었습니다


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

10년 초과 전

더 보기