답변 있음
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...

거의 3년 전 | 0

| 수락됨

답변 있음
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...

거의 3년 전 | 0

답변 있음
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...

거의 3년 전 | 0

답변 있음
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...

거의 3년 전 | 0

답변 있음
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...

거의 3년 전 | 0

답변 있음
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 ...

거의 3년 전 | 0

답변 있음
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...

거의 3년 전 | 0

답변 있음
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...

거의 3년 전 | 0

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

거의 3년 전 | 0

답변 있음
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...

거의 3년 전 | 0

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

거의 3년 전 | 0

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

문제를 풀었습니다


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

대략 4년 전

더 보기