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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 1

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

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

más de 4 años hace | 0

| aceptada

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

más de 4 años hace | 0

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

casi 5 años hace | 1

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

casi 5 años hace | 1

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

casi 5 años hace | 0

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

casi 5 años hace | 0

Resuelto


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

casi 5 años hace

Resuelto


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

casi 5 años hace

Resuelto


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

casi 5 años hace

Resuelto


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

casi 5 años hace

Resuelto


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

casi 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Resuelto


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

alrededor de 5 años hace

Cargar más