回答済み
Error with difference in the output size and response size during the model training
To my understanding, you are trying to develop a model to detect circular/psuedo-circular objects from grayscale images with low...

2年以上 前 | 0

| 採用済み

回答済み
Convert homogenous string array into a table or excel file separated into data
To my understanding, you are trying to turn a text file into a table or excel sheet. You can go with the following workaround: ...

2年以上 前 | 0

回答済み
feedforward net, when divideFcn set to 'dividerand', what part of the data is used for training and for testing ?
To my understanding, you want to know whether calling 'divideFcn' uses a part of the input (here 'x') for the training and then ...

2年以上 前 | 0

回答済み
How to read a single image from a folder and then classify it with a trained neural network?
To my understanding, you trained the network for skin tumor classification and want to classify a single image using the trained...

2年以上 前 | 0

回答済み
Deep Network Designer issue for regression problem, I can't import my data set - Deep Learning Toolbox
To my understanding, you want to train a recurrent network (lstm) using Deep Network Designer and want to import data into deep ...

2年以上 前 | 0

回答済み
Training failed: Layer 'classoutput' input size mismatch
To my understanding, you are trying to train convolutional neural network by using Deep Network Designer but the input to 'class...

2年以上 前 | 0

| 採用済み

回答済み
Error while trying learning transfer example script Deep Learning Onramp
To my understanding, you are trying to run the transfer learning example (4/4) on Deep Learning Onramp and getting the error. Th...

2年以上 前 | 0

| 採用済み

回答済み
How to reduce the time required for training a logistic regression classifier
To my understanding, you want to speed up your image classification task. You can use CNN for your classification process. You...

2年以上 前 | 1

| 採用済み

回答済み
How to create a loop for the following problem in MATLAB?
To my understanding, you want to create a “for” loop where your “n” value is varying from 1 to 365 (representing day of a year) ...

2年以上 前 | 0

回答済み
ANN using Deep Network Designer with excel file as input and output values.
To my understanding, you want to import data from excel file and create an artificial neural network in Deep Network Designer. A...

2年以上 前 | 0

回答済み
How to batch processing the answers from MATLAB to Excel
To my understanding, you want to do the following tasks: import data from excel sheet into MATLAB. do some processing on imp...

2年以上 前 | 0

| 採用済み

回答済み
How can I train a Big Data (30k) using neural network fitting problem? or How to set mini batch?
To my understanding, you are using Bayesian Optimization. You want to set a mini-batch to increase the speed of training. You ca...

2年以上 前 | 0

回答済み
How can I solve an equation that is logical?
As per my understanding, you are trying to solve the equation sin(x)==1 and and having issue with variable "eqn" You can try t...

4年弱 前 | 0

回答済み
How to remove points of a specific color from a point cloud? (Comp Vis Toolbox)
As per my understanding, you are having a point cloud and you want to identify points with point.Color as NaNs and remove them f...

4年弱 前 | 0

回答済み
How to make Nyquist Plot using data stored in matrices?
As per my understanding, you are trying to make a nyquist plot from frequency response data. You can determine a transfer fun...

4年弱 前 | 0

| 採用済み

回答済み
How to convert an array of cells into an array of structures?
As per my understanding you are trying to convert an array of cells into an array of structures but "cell2struct" is throwing an...

4年弱 前 | 0

| 採用済み

回答済み
How can one write out the set of possible values of a variable?
As per my understanding, you are having a table from which you want to write out all the values that a variable takes. You ca...

4年弱 前 | 0

回答済み
how to load multiple .dicom files in matlab?
As per my understanding, you are able to construct a classification code for operating on images but not able to operate with di...

4年弱 前 | 0

回答済み
Installation error while unzipping, runtime error 5
There are few reasons related to “runtime error 5 “ while unzipping. You can refer the following MATLAB Answer, that provides d...

4年弱 前 | 0

解決済み


Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....

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年弱 前

解決済み


Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...

4年弱 前

解決済み


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

4年弱 前

解決済み


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

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年弱 前

解決済み


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年弱 前

解決済み


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

4年弱 前

解決済み


Remove the vowels
Remove all the vowels in the given phrase. Example: Input s1 = 'Jack and Jill went up the hill' Output s2 is 'Jck nd Jll wn...

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年弱 前

さらに読み込む