Question


How to convert the values greater than one to less than one for a matrix stored in workspace
I am having a matrix size (300x2000) stored in workspace. In that some of the values are greater than 1 for example (1.345, 1.6...

nästan 3 år ago | 2 answers | 0

2

answers

Answered
Could anyone please help me with an example of LSTM network matlab code.
Actually i want to implement LSTM in my deep neural network code. when I tried using the above commands in my code I am getting ...

nästan 3 år ago | 0

Answered
Could anyone please help me with an example of LSTM network matlab code.
As I am not clear with LSTM time series in the matlab code, i need a clear explanation with a sample matlab code that can perfor...

nästan 3 år ago | 0

Question


Could anyone please help me with an example of LSTM network matlab code.
numFeatures = 12; numHiddenUnits1 = 125; numHiddenUnits2 = 100; numClasses = 9; layers = [ ... sequenceInputLayer(numFe...

nästan 3 år ago | 3 answers | 0

3

answers

Question


how to set the limit of x axis and y axis as per the required range for the following code
code: x=1:12 y=[11 3 9 6 6 8 8 10 9 8 10 11]; xlim([0,12]); ylim([0,12]); plot(x,y,'-k*') when i run the code i am getting...

ungefär 3 år ago | 1 answer | 0

1

answer

Question


how to multiply three matrices that results in a single value.
I am having three matrices: A=[1 2 3]; B=[4 5 6]; C=[7 8 9]; I need to multiply all the three matrices such that the result ...

mer än 3 år ago | 2 answers | 0

2

answers

Question


could anyone help me how to improve the quality of matlab fig using applyhatch_plus.
I have generated bar graph with colors using my code and is of good quality.To convert the color graph into patterns i used the...

nästan 4 år ago | 0 answers | 0

0

answers

Question


could anyone help me how to draw the bar chart with respect to the following code:
code: x=[1 2 3] y=[43 54 60 63 66 65 45 55 61 64 67 47 57 62 69] with respect to 1 i need to plot six datas with...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


could anyone help me how to avoid the repetition of y axis values on the right with respect to the following code
Code: x=1:5 y1=[ 3.5743 2.4635 1.6621 1.3403 0.5476 ]; y2=[3890000 4168000 4446000 4724000 4999000 ] y3...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


Could anyone help me how to plot the graph with respect to x axis in normal form and one y axis in semilog and other y axis in normal form.
I am having the data in x,y1,y2 in graph i want to have x and y2 in normal and y1 should be in semilog. When i used the comman...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


how to append matrices of different sizes together
I am having three different matrices as A = [1 2; 3 4] B = [4 5 6; 7 8 9] C=[10 11 12 13; 14 15 16 17] i want to have the r...

ungefär 4 år ago | 1 answer | 0

1

answer

Answered
could anyone help me how to vertically concatenate different mat files of same number of rows with different columns.
the reason i need to concatenate all into a single mat file i need to feed the mat file into the neural network for training.

ungefär 4 år ago | 0

Question


could anyone help me how to vertically concatenate different mat files of same number of rows with different columns.
A.mat=(10x2) B.mat=(10x4) C.mat=(10x6) i want to vertically concatenate all three .mat files into single final.mat that conta...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


how to combine five different workspace containing two matrices into single workspace.
I am having five different workspaces saved in .mat as one,two,three,four,five where one contains A=4x10 and B=4x10 two conta...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


Could anyone help me how to five different mat files in workspace into a single mat file.
I am having five different mat files as user1.mat,user2.mat,user3.mat,user4.mat and user5.mat I want to combine all five mat fi...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


Could anyone help me how to make the values to be repeated again after 800 iterations for a total of 1000 iterations.
I am having the values to be executed for 1000 iterations Columns 1 through 12 0.8138 0.9390 0.9505 1.0641 ...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


could anyone help me how to plot the confusion matrix with respect to the values
A=[700 0 0; 0 696 4; 0 9 691] B=[150 0 0; 0 141 9; 0 2 148] I want to plot the confusion mat...

ungefär 4 år ago | 0 answers | 0

0

answers

Answered
could anyone help me to solve the issue in the following matrix
the entries need not to be restricted. The numbers can be changed with respect to the following conditions. the diagonal of th...

ungefär 4 år ago | 0

Question


could anyone help me to solve the issue in the following matrix
I ma having matrix A=[ 44 0 0; 0 57 0; 0 1 48] The sum(A) is 150. Could anyone please...

ungefär 4 år ago | 2 answers | 0

2

answers

Question


Could anyone help me how to multiply the second and third element of the row in a matrix by an value of 2 and 3.
I am having the matrix A=[ 2 3 4] I want to multiply the second element by 2 and third element by 3. could anyone pleas...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


Could anyone please help me to do matrix multiplication with respect to the sample data given below.
If A=[2 3 4] B=A*[1; 2; 3] so i want to multiply 2 with [1; 2; 3] followed by 3 with ...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


could anyone help me how to solve the issue in the following code
code: input = [0 0 1; 0 1 1; 1 0 1; 1 1 1; ]; correct_Output = [0 0.5; 0 0.9; ...

ungefär 4 år ago | 0 answers | 0

0

answers

Question


could anyone help me to solve the issue
I want to plot the confusionmatrix for training,testing,validation and overall when i used the command plot confusion command f...

ungefär 4 år ago | 0 answers | 0

0

answers

Question


could anyone help me to compute the confusion matrix for training,validation and testing data set
code: x = irisInputs; t = irisTargets; trainFcn = 'trainscg'; % Scaled conjugate gradient backpropagation. % Create a Pat...

ungefär 4 år ago | 0 answers | 0

0

answers

Question


Could anyone help me to solve the issue.
I am using nntool to train the network once everything got completed, the NNtool displays only performance and training and i ...

ungefär 4 år ago | 0 answers | 0

0

answers

Question


could anyone help me how to maximize the output based on the input data using neural networks.
I having a data set that contains the distance and channel gain of the users. I wnat to group the users into clusters such that...

ungefär 4 år ago | 0 answers | 0

0

answers

Question


Could anyone help me to count the number of elements present in each row are different.
I have two different cells A and B containing the data as follows: A=10X1 cell 'four' 'four' 'two' 'four' 'four' 'two' '...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


Could anyone help me to solve the error in the following code
load fisheriris X = meas; Y = species; Mdl = fitcknn(X,Y,'NumNeighbors',5,'Standardize',1) predictedY = resubPredict(Mdl) C...

ungefär 4 år ago | 1 answer | 0

1

answer

Question


Could anyone help me how to overcome the error in the following code:
code: x = linspace(0,10); y1 = sin(x); y2 = sin(0.9*x); y3 = sin(0.8*x); y4 = sin(0.7*x); y5 = sin(0.6*x); y6 = sin(0.5*x...

ungefär 4 år ago | 2 answers | 0

2

answers

Load more