Sreedhar Arumugam
Followers: 0 Following: 0
Feeds
已回答
Overfitting in Neural Network
You could use the accuracy metric from the confusion matrix to determine if the model is overfitting. The performance can be m...
Overfitting in Neural Network
You could use the accuracy metric from the confusion matrix to determine if the model is overfitting. The performance can be m...
3 years 前 | 0
已回答
Iteratively solving equations in MATLAB
You can find a similar MATLAB answer to <https://in.mathworks.com/matlabcentral/answers/490875-solve-an-equation-through-iter...
Iteratively solving equations in MATLAB
You can find a similar MATLAB answer to <https://in.mathworks.com/matlabcentral/answers/490875-solve-an-equation-through-iter...
3 years 前 | 0
已回答
a code that compute numbers and numbers does not !
I am assuming you want to compute interest based on the frequency of compounding. Your switch statement is with respect to n...
a code that compute numbers and numbers does not !
I am assuming you want to compute interest based on the frequency of compounding. Your switch statement is with respect to n...
3 years 前 | 0
已回答
How to change Axes values to 'String' instead of 'numbers' on Simulink Scope?
It is my understanding that you are asking why the y-axis is displaying the values as strings such as 'first', 'second' and so o...
How to change Axes values to 'String' instead of 'numbers' on Simulink Scope?
It is my understanding that you are asking why the y-axis is displaying the values as strings such as 'first', 'second' and so o...
3 years 前 | 0
已回答
Help, how to replace the values of a ones matrix with vectors in each column
I am assuming you are solving a PDE in 1 dimension. You can check out MATLAB's PDE solver which returns the solution as a 3-D ar...
Help, how to replace the values of a ones matrix with vectors in each column
I am assuming you are solving a PDE in 1 dimension. You can check out MATLAB's PDE solver which returns the solution as a 3-D ar...
3 years 前 | 0
已回答
How to convert decimal to binary which includes decimal values for eg 1.25.
It is my understanding that you want to convert a floating point number in decimal format to its binary equivalent. The de2bi a...
How to convert decimal to binary which includes decimal values for eg 1.25.
It is my understanding that you want to convert a floating point number in decimal format to its binary equivalent. The de2bi a...
3 years 前 | 0
| 已接受
已回答
How to plot or mark the centroid of each cluster in the output image?
I am assuming you're using the built-in function of MATLAB to perform k-means clustering of your data. [idx,C] = kmeans(data,6)...
How to plot or mark the centroid of each cluster in the output image?
I am assuming you're using the built-in function of MATLAB to perform k-means clustering of your data. [idx,C] = kmeans(data,6)...
3 years 前 | 0
已回答
Simple question for using 'for loop'
Your code always iterates over the odd indices from 1 to 10. Line 2 of your code -> a(n) = 2^n stores the values in a(1), a(3),...
Simple question for using 'for loop'
Your code always iterates over the odd indices from 1 to 10. Line 2 of your code -> a(n) = 2^n stores the values in a(1), a(3),...
3 years 前 | 0
已回答
Sorting an array with if, for and while loop only.
There are many sorting algorithms that can be used to answer your question. As a starter, I would recommend learning Bubble Sor...
Sorting an array with if, for and while loop only.
There are many sorting algorithms that can be used to answer your question. As a starter, I would recommend learning Bubble Sor...
3 years 前 | 0
已回答
I have to solve 1d heat equation using ftcs with given boundry condition. u(0,t)=0, u(l,t)=0 u(x,0) = f(x) but i cannot understand how to use my this in for loop .
It is my understanding that you want to implement a solution for 1-D heat solution using FTCS method. Please refer to these sub...
I have to solve 1d heat equation using ftcs with given boundry condition. u(0,t)=0, u(l,t)=0 u(x,0) = f(x) but i cannot understand how to use my this in for loop .
It is my understanding that you want to implement a solution for 1-D heat solution using FTCS method. Please refer to these sub...
3 years 前 | 0