Respondida
How can I merge two matrix of 2D points following a specific path?
Hello Matteo, I understand that you want to merge two matrices red and blue and you want to merge them according to the blue li...

más de 2 años hace | 0

| aceptada

Respondida
How to use a trained LSTM network in MATLAB 2013a
Hi Tayyip, If you wish to execute an LSTM model in MATLAB version 2013a, you can utilize code generation. The initial step invo...

más de 2 años hace | 0

Respondida
Splitting data to training and testing without validation
Hello Nagwa, It seems like you're asking whether not using validation error for a few short learning models would lead to a l...

más de 2 años hace | 0

Respondida
How to make logistic regression model that obtained from literature review?
Hello Kanokkwan, It seems like you know the number of features as well as the value of weights you want to use in logistic regr...

más de 2 años hace | 0

Respondida
Error in validation datastore while I am training in parallel
Hello Roaa, The error, “Dot indexing is not supported for variables of this type” occurs when you try to access or modify a pro...

más de 2 años hace | 0

Respondida
Equation Modelling/Regression with 3 Independent Variables
Hello Andrew, I think the problem you are facing is, you do not have the exact equation to find the value of H from the ...

más de 2 años hace | 0

Respondida
MATLAB coding for artificial neural network (ANN) to automatically determine the species of Gal´apagos finches (birds of the subfamily Geospizinae) in images
Hello Ramos, I have provided with possible answers to each question, please have a look. Learning mechanism that ANN us...

más de 2 años hace | 0

Respondida
LSTM RNN output is just the average of the training data
Hello Simone, The issue you've described, where the model consistently outputs the same value (which happens to be the a...

más de 2 años hace | 0

Respondida
Artificial neural network transfer learning
Hello Serhat, One of the primary concerns associated with repetitive training is that the model tends to exhibit memorizatio...

más de 2 años hace | 0

Respondida
curve fitting with 4 variables
Hello Daniel, If you're looking to fit a curve without a predefined equation, Machine Learning or Deep Learning can be a valu...

más de 2 años hace | 0

Respondida
Neural Network Online learning
Hi Hassan Iskandarani, Yes, Simulink does provide a way to perform online learning of a neural network without explicit...

más de 2 años hace | 0

Resuelto


Replace NaNs with the number that appears to its left in the row.
Replace NaNs with the number that appears to its left in the row. If there are more than one consecutive NaNs, they should all ...

más de 3 años hace

Resuelto


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

más de 3 años hace

Resuelto


Pangrams!
A pangram, or holoalphabetic sentence, is a sentence using every letter of the alphabet at least once. Example: Input s ...

más de 3 años hace

Resuelto


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

más de 3 años hace

Resuelto


Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...

más de 3 años hace

Resuelto


Which values occur exactly three times?
Return a list of all values (sorted smallest to largest) that appear exactly three times in the input vector x. So if x = [1 2...

más de 3 años hace

Resuelto


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

más de 3 años hace

Resuelto


Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...

más de 3 años hace

Resuelto


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

más de 3 años hace

Resuelto


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

más de 3 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...

más de 3 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...

más de 3 años hace

Resuelto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

más de 3 años hace

Resuelto


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

más de 3 años hace

Resuelto


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

más de 3 años hace

Resuelto


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

más de 3 años hace

Resuelto


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

más de 3 años hace

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

más de 3 años hace

Resuelto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

más de 3 años hace

Cargar más