Community Profile

photo

Vinod Sudheesh

Last seen: 3 Monate vor Aktiv seit 2014

Statistiken

All
  • 3 Month Streak
  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer
  • Quiz Master
  • CUP Challenge Master
  • Speed Demon
  • Creator
  • Commenter
  • Promoter
  • Solver

Abzeichen anzeigen

Content Feed

Anzeigen nach

Beantwortet
How to use the steepest descent method to solve a function.
Hello, The below code snippet solves this problem using the "Gradient Descend Algorithm" clc; clear; f=@(x...

fast 9 Jahre vor | 0

Beantwortet
Installed Matlab Compiler, but there is no "Application Compiler" app under the apps toolbox
Hi Andrew, Has MATLAB Compiler been installed correctly? What does the following command return? license('checkout','Com...

fast 9 Jahre vor | 1

Beantwortet
I have a problem with opening own simulink files
Hello Christoph, 1) In which location have you installed MATLAB 8.4 (R2014b)? It is on a permanent drive or on any mounted dr...

fast 9 Jahre vor | 0

Beantwortet
Prediction by using newff ?
Hello, If I understand your question correctly, you would like to know how you can compute the output when an input is applie...

fast 9 Jahre vor | 1

| akzeptiert

Beantwortet
adding multiple arrows with latex in a plot
Hi Meva, I am not sure if I understand your question completely. Are you wanting to add a "textarrow" annotation object to ...

fast 9 Jahre vor | 1

Beantwortet
Problem with GUIDE based app and R2015a
Hi Joseph, How are you launching your MATLAB App?. Are you observing this error even when launching the App from the command ...

fast 9 Jahre vor | 0

Beantwortet
Rescaling and extending the axes of compass plots
Hi Lawrence, You could have both the "compass graphs" to be of same size by having the "axes" that contains these "compass gr...

fast 9 Jahre vor | 0

Beantwortet
How to create list of checkboxes and plot checked boxes
Hi Florian, I have a few suggestions for you regarding this question 1) You could have the "plot" and "delete" operations...

fast 9 Jahre vor | 0

Beantwortet
Mux to Bus error message
Hi Matthew, To avoid this error please navigate to Model Configuration Parameters (Ctrl+E) >> Diagnostics >> Connectivit...

fast 9 Jahre vor | 6

| akzeptiert

Beantwortet
Calculating the entropy of a discrete memoryless source?
Hello Daniel, You could write the script for the same as follows 1) Create a function, say "esingle" that computes the "en...

fast 9 Jahre vor | 0

Beantwortet
How to create neural networks with multiple hidden layers (two hidden layers) using nnstart?
Hello Tharindu, It seems it is not possible to create a Pattern recognition network with multiple hidden layers while using t...

fast 9 Jahre vor | 14

| akzeptiert

Beantwortet
boxplot function not working
The "boxplot" function is a part of the "Statistics Toolbox". Do you have "Statistics Toolbox" installed? You could check the...

etwa 9 Jahre vor | 1

Beantwortet
getparam/setparam command for Tapped Delay block
Only the "Initial Condition:" parameter of a "Tapped Delay" block is "tunable" and hence can be changed during simulation. Pl...

etwa 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to suppress axis labels in probplot
You could do this by setting the "axes" properties appropriately. For example, please see the code snippet below in which the "X...

etwa 9 Jahre vor | 0

Beantwortet
How to shrink each figure inside a subplot ?
You could achieve this by modifying the "Position" (or "OuterPosition") property for each of the five individual "axes". For ...

etwa 9 Jahre vor | 1

| akzeptiert

Beantwortet
How do I find out the number of neurons in layers?
You could do this by querying the "size" property of each of the individual neural network layers. For example, please see the c...

etwa 9 Jahre vor | 0

Beantwortet
How to include '-nojvm' into compiler command line in Matlab?
While using "deploytool", you can pass additional parameters to "mcc" command by first going to "Settings" (in "deploytool" wind...

etwa 9 Jahre vor | 0

Beantwortet
Theoretical: Why use trapz to calculate absolute power?
The "pwelch" function returns the power spectral density (PSD) estimate. To compute the power contained in a frequency range, th...

etwa 9 Jahre vor | 0

Beantwortet
How to add more than one hidden layer?
Yes, it is possible to create a "feedforward neural network" with three hidden layers using the "feedforwardnet" function. This ...

etwa 9 Jahre vor | 5

| akzeptiert

Beantwortet
how to read data from a .mat file
You could use the "load" command to read data stored in a MAT file. >> load Ey1a.mat The "dlmread" function is used for ...

etwa 9 Jahre vor | 1

Beantwortet
Maximum Likelihood Estimation for function with several variables
I understand that you would like to find the points where a function attains its maximum value. The ‘fminunc’ function in Opt...

mehr als 9 Jahre vor | 2