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

mehr als 2 Jahre vor | 0

| akzeptiert

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

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

mehr als 2 Jahre vor | 0

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Mehr laden