답변 있음
Polarization of image channels
Hi, HH, VV, VH and HV represents polarimetric images. One can change the composition of images by using different polarizations...

4년 초과 전 | 0

답변 있음
how to apply hermitian symmetry on the complex value
One of the discrete-time Fourier transform properties is that if a sequence is conjugate symmetric, then the Fourier transform i...

4년 초과 전 | 0

답변 있음
How do I code a function that's supposed to be an infinite pattern?
As mentioned in the comment by Adam, Formula may be theoretically for infinite pattern but for arrays ‘x’ and ‘y’ size will be f...

4년 초과 전 | 0

답변 있음
Loading Files Error Import
For the error: ‘No such file or directory’, make sure the .mat file which you are trying to load exists on the MATLAB path. For ...

4년 초과 전 | 1

| 수락됨

답변 있음
How to handle invalid/illegal actions/moves in Reinforcement Learning toolbox?
To implement your own custom reinforcement learning algorithms, you can create a custom agent. Specify properties of the agent...

4년 초과 전 | 0

답변 있음
App Designer Reflow of Items within Tabs
Reflow is possible if an app is built using the reflow template. Currently app designer does not provide panels within a tab gro...

4년 초과 전 | 0

| 수락됨

답변 있음
C code generation error for bwlabel
The function "bwlabel" requires dynamic memory allocation (malloc) based on the content of the input image. When you label an im...

4년 초과 전 | 0

답변 있음
Simulink TCP/IP Client Send/Receive
Hi, The TCP/IP Client Send and Client Receive blocks are both client blocks, operate only in TCP/IP client mode (they need to ...

4년 초과 전 | 0

답변 있음
how to solve this problem? and how to add toolboxes to my matlab
It seems error is because the folder where you are trying to save project file does not have write permissions. To solve the err...

4년 초과 전 | 0

답변 있음
fft Simulink R2019a,RaspberryPi 3B
I assume Simulink support package for Raspberry Pi Hardware is installed and External Mode is enabled for the project. To be abl...

4년 초과 전 | 0

답변 있음
Fuzzy logic edge detection
You can try with other edge detection techniques. You can try: edge(I,method) where method can be an edge-detection algorithm...

4년 초과 전 | 0

| 수락됨

답변 있음
Autocorrelation on a sequence of images
I think you may need to decompose the video to image sequence and the apply xcorr2 to those images. Refer to this link for dec...

4년 초과 전 | 0

답변 있음
Extract the certain rows from a tall array
Hi, I think the difference between the time taken for rows 1:100 and 2:100 can be because for rows between 1 to 100, just first...

거의 5년 전 | 1

답변 있음
error : Index in position 3 exceeds array bounds (must not exceed 1).
Hi, I understand that you are facing the error – ‘Index in position 3 exceeds array bounds (must not exceed 1)’ while trying t...

거의 5년 전 | 1

답변 있음
Help correlating data using join, innerjoin, outerjoin to compare datasets with common date which is in DD-MMM-YYYY format.
Hi, I assume you want to combine table ‘A’ and table ‘B’ using a column which is in DD-MMM-YYYY format in both the tables t...

거의 5년 전 | 0

답변 있음
Printing positive numbers backwards
Hi, I understand that you want to extract positive numbers from matrix and store them in a new array and then traverse the new...

거의 5년 전 | 0

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


QWERTY coordinates
Given a lowercase letter or a digit as input, return the row where that letter appears on a <http://en.wikipedia.org/wiki/Keyboa...

거의 5년 전

문제를 풀었습니다


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

거의 5년 전

문제를 풀었습니다


Remove all the consonants
Remove all the consonants in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill'; Output s2 is 'a ...

대략 5년 전

문제를 풀었습니다


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

대략 5년 전

문제를 풀었습니다


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

대략 5년 전

문제를 풀었습니다


Find the numeric mean of the prime numbers in a matrix.
There will always be at least one prime in the matrix. Example: Input in = [ 8 3 5 9 ] Output out is 4...

대략 5년 전

문제를 풀었습니다


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

대략 5년 전

문제를 풀었습니다


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

대략 5년 전

문제를 풀었습니다


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

대략 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 the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

대략 5년 전

더 보기