已回答
Polarization of image channels
Hi, HH, VV, VH and HV represents polarimetric images. One can change the composition of images by using different polarizations...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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 ...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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 ...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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...

6 years 前 | 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 ...

6 years 前

已解决


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

6 years 前

已解决


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

6 years 前

已解决


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

6 years 前

已解决


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

6 years 前

已解决


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

6 years 前

已解决


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

6 years 前

已解决


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

6 years 前

已解决


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

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

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

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

6 years 前

已解决


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

6 years 前

已解决


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

6 years 前

加载更多