Vishal Chaudhary
MathWorks
Followers: 0 Following: 0
Statistiques
0 Questions
11 Réponses
RANG
1 529
of 295 569
RÉPUTATION
44
CONTRIBUTIONS
0 Questions
11 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
18
RANG
of 20 247
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 154 105
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
How to pass Optional-Positional arguments to a function in matlab
Pass the input as a parameter name and value pair. For example the below should work: printPhoto('myfile.gif','color','colorful...
presque 6 ans il y a | 1
How to shrink legend without shrinking font size
There is no particular attribute to shrink legend without changing font-size. Try using: l = legend l.NumColumns = 2; Other...
presque 6 ans il y a | 1
In Appdesigner , how to know the attributes of certain UI
To get all the current attributes of UI, "get" can be used. For example: ax = uiaxes; get(ax) ax.XLim=[0 10]; This will sho...
presque 6 ans il y a | 0
Adding error bars to a grouped bar plot
The ability to specify that the "errorbar" function display the error bars inside the individual bars is not available in MATLAB...
presque 6 ans il y a | 16
| A accepté
I'm trying to create a binary to unary encoding converter. However I am getting stuck on one of the final loops. Which should print out the number of ones for the positional value. After this I plan on adding the resulting matrices together.
In the second for loop, since, mul is array, try using mul(N) to access the elements and change the logic accordingly. I think a...
presque 6 ans il y a | 0
Connections between layers removed once call to train is made.
The “configure” function takes input data and target data as input and configures the network. You can read about it in the docu...
environ 6 ans il y a | 0
Add only top axis in plot
The axes function creates a new axes rather than changing location of previous one. To change the location of x axes only, y...
environ 6 ans il y a | 0
Write a Matlab program by using a while loop that finds the smallest positive number 2^m such that 1+x>1 in the machine.
Precision differs in MATLAB and theoretical calculation. So when you write while loop you will know the difference.
plus de 6 ans il y a | 0
Linear Regression - hac function
You can also use fitlm function with hac. DataTable = array2table([X,y],'VariableNames',{'X1','X2','X3','Y'}); OLSModel ...
plus de 6 ans il y a | 0
I have constructed my neural network, how can I now use it to predict?
For predicting you can use following : y = net(x); % x contains input data and y is predicted data If you want to crea...
plus de 6 ans il y a | 0
Out of Memory Error
Try, doing following things to see if it works: 1. Turn off the Workspace I/O (to do that, in the Simulink model go to Simula...
plus de 6 ans il y a | 0
| A accepté