답변 있음
Synchronise two videos for comparison using images matching
I think you need to convert the video to sequence of frames for using them against some algorithm. You can use an app for batch ...

4년 초과 전 | 0

답변 있음
How to measure the similarity of two time frequency diagrams
xcorr can be used to find cross-correlation of two discrete time sequences. I think you can use that in funding similarities bet...

4년 초과 전 | 0

답변 있음
How to calculate the mean of different time frequency
meanfreq can be used to calculate mean of frequencies. It can take frequency or spectral densities as input arguments in the for...

4년 초과 전 | 0

답변 있음
Built .dll based s-function
Yes, it’s possible to call a S-function using library files. You can define the .dll files in header file to call them. You can ...

4년 초과 전 | 0

답변 있음
How to plot the centroids of kmeans in an image?
kmeans returns a numeric matrix containing Centroid location. Once you have locations you can plot these locations using plot fu...

4년 초과 전 | 0

답변 있음
How to design this filter?
You can design custom filters in MATLAB. You can refer to the following link for more information: https://www.mathworks.com/d...

4년 초과 전 | 0

답변 있음
Optimization problem - solving problem within a loop
You can use Optimization Expressions for defining objective functions and its variables inside a for-loop. Refer to the followin...

4년 초과 전 | 0

답변 있음
How can I graph match same object in both the images?
bwlabeln is used to label the components within an image. There are several kinds of features that you can try to extract and ma...

4년 초과 전 | 0

답변 있음
How can I project my data onto a map?
To get the data onto the map you can use uistack. uistack is used to reorder visual stacking of UI components. Using this functi...

4년 초과 전 | 0

답변 있음
Is it possible to include a .dll-file without a .h-file?
A similar question is already being answered. Refer to the following link for more information: https://www.mathworks.com/matl...

4년 초과 전 | 0

| 수락됨

답변 있음
Failure to untar() a *.tar.gz file
untar() only accepts character vector or scalar string as data-types for the filename. Please check the data-type of filename yo...

4년 초과 전 | 0

답변 있음
How to display colorbar label with App Designer
Hi, You can try editing axes font size to a value less than the default value that is 12. If you change the axes font size, th...

거의 5년 전 | 1

| 수락됨

답변 있음
A Question About the exe file generated by Matlab Compiler
Hi, Yes, you can use it even after expiration of MATLAB. MATLAB compiler builds standalone application (exe file) from the ...

거의 5년 전 | 1

| 수락됨

답변 있음
How can i convert a mechanical rotational domain output signal from rad/s to rpm in simulink?
Hi, You can use Ideal Motion Sensor Block with PS-Simulink Converter. In PS-Simulink converter there is a parameter Output sig...

거의 5년 전 | 0

문제를 풀었습니다


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

대략 5년 전

문제를 풀었습니다


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

대략 5년 전

문제를 풀었습니다


Pattern matching
Given a matrix, m-by-n, find all the rows that have the same "increase, decrease, or stay same" pattern going across the columns...

대략 5년 전

문제를 풀었습니다


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

대략 5년 전

문제를 풀었습니다


Elapsed Time
Given two date strings d1 and d2 of the form yyyy/mm/dd HH:MM:SS (assume hours HH is in 24 hour mode), determine how much time, ...

대략 5년 전

문제를 풀었습니다


Find the two most distant points
Given a collection of points, return the indices of the rows that contain the two points most distant from one another. The inpu...

대략 5년 전

문제를 풀었습니다


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

대략 5년 전

문제를 풀었습니다


Counting Money
Add the numbers given in the cell array of strings. The strings represent amounts of money using this notation: $99,999.99. E...

대략 5년 전

문제를 풀었습니다


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

대략 5년 전

문제를 풀었습니다


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

대략 5년 전

문제를 풀었습니다


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

대략 5년 전

문제를 풀었습니다


Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...

대략 5년 전

문제를 풀었습니다


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

대략 5년 전

문제를 풀었습니다


Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....

대략 5년 전

문제를 풀었습니다


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

대략 5년 전

문제를 풀었습니다


Find state names that start with the letter N
Given a list of US states, remove all the states that start with the letter N. If s1 = 'Alabama Montana Nebraska Vermont Ne...

대략 5년 전

더 보기