photo

Lucas García

Last seen: 2 jours il y a Actif depuis 2011

Followers: 0   Following: 0

Message

Programming Languages:
Python, C++, C, Java, R, MATLAB, Fortran
Spoken Languages:
English, Spanish

Statistiques

All
MATLAB Answers

0 Questions
55 Réponses

File Exchange

4 Fichiers

Cody

0 Problèmes
29 Solutions

RANG
227
of 301 652

RÉPUTATION
430

CONTRIBUTIONS
0 Questions
55 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
143

RANG
1 399 of 21 375

RÉPUTATION
1 369

CLASSEMENT MOYEN
5.00

CONTRIBUTIONS
4 Fichiers

TÉLÉCHARGEMENTS
21

ALL TIME TÉLÉCHARGEMENTS
12458

RANG
18 768
of 175 981

CONTRIBUTIONS
0 Problèmes
29 Solutions

SCORE
309

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • GitHub Submissions Level 3
  • MATLAB Central Treasure Hunt Finisher
  • Personal Best Downloads Level 3
  • 5-Star Galaxy Level 4
  • First Review
  • First Submission
  • 3 Month Streak
  • Knowledgeable Level 4
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
DLnetwork definition and training problem with outputLayer
You should use the <https://www.mathworks.com/help/deeplearning/ref/trainnet.html trainnet> function instead of trainNetwork to ...

environ 2 ans il y a | 0

Réponse apportée
Stateful predict block failed to evaluate mask initial commands
Hi @MUSKAN, A few questions: What version of MATLAB are you using? Can you provide more details on the network architecture? ...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Why MATLAB uses the Newton’s Gradient Descent as the solver for fitcnet?
L-BFGS is used both in in fitcnet and fitrnet. These functions ship in Statistics and Machine Learning Toolbox and allow you to ...

environ 3 ans il y a | 0

| A accepté

Réponse apportée
Defuzzification
If you are using the Fuzzy Inference System editor, you can choose in the main GUI one of the defuzzication methods. The input f...

environ 11 ans il y a | 0

Réponse apportée
About random number generators
As you have found out, using |<http://www.mathworks.com/help/matlab/ref/rng.html rng>| is the way to go with the current MATLAB ...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
corrcoef - plotregression (which algorithm plotregression use)
|plotregression| actually uses the |regression| function (also from Neural Network Toolbox) to compute the R value. However,...

plus de 13 ans il y a | 1

Réponse apportée
ODE15S problem with solver
Have you tried with all the different stiff solvers available? |ode15s|, |ode23s|, |ode23t| and |ode23tb|. It could be that the...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
bsxfun in GPU in PCT v5.2
The link you are referring to is actually from the current release, R2012a. bsxfun support for GPUArray data is a new feature in...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
Using uiimport and subsequent coded commands
Hi Jason, In order for your code to wait until uiimport has finished, make sure you request a return value from uiimport. ...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Remove ObsNames from MatLab dataset
The property ObsNames may be empty. Otherwise, it should have as many strings as observations. To remove these ObsNames from a d...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
How to measure running time of a code using MATLAB
Take a look at the <http://www.mathworks.es/help/techdoc/ref/tic.html tic> and <http://www.mathworks.es/help/techdoc/ref/toc.htm...

plus de 14 ans il y a | 5

| A accepté

Réponse apportée
Select a random number from a set
There are a few ways to do it. For example, using randi to select in which position is the card that you will extract. pos ...

plus de 14 ans il y a | 10

Réponse apportée
Neural Network code
Your code is basically creating a network with only one layer of neurons. With newfit this means that the network is trying to f...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
how to find distance between two points?
You can use the <http://www.mathworks.es/help/toolbox/stats/pdist.html pdist> function in the Statistics Toolbox: e.g: distance...

plus de 14 ans il y a | 28

| A accepté

Réponse apportée
how to separate out the lung sounds from heart sounds ?
You can use adaptfilt in the DSP toolbox for adaptive noise canceling. A "similar" <http://www.mathworks.com/products/dsp-system...

plus de 14 ans il y a | 0

Réponse apportée
checking of existing an string in a cell arrays
if ~any(strcmp(CELL,'a')) % Do Something else % Do Something else end

plus de 14 ans il y a | 37

| A accepté

Réponse apportée
create vector of repeating elements (sort of)
One of many ways: >> w = 3; n = 8; >> v = repmat(1:n,w,1); >> v = v(1:end)

plus de 14 ans il y a | 1

Réponse apportée
Angle between two vectors in 3d
You can use the subspace function to find the angle between two subspaces: >> subspace([1;0;0],[0;1;0]) ans = 1...

plus de 14 ans il y a | 3

Réponse apportée
Combining vectors of day, month and year into a single date vector
dates = datenum([year,month,day]); Then you can plot your data vs. dates. Finally, use |datetick| to change the format o...

plus de 14 ans il y a | 4

| A accepté

Réponse apportée
Error Message when using configured ANN (mismatch number of inputs)
The functions for creating networks in the toolbox will assume that if your input matrix is |n x m| it will represent |m| sample...

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
How to define the abstract symbolic of 'f=f(x,y,z)' at Matlab-Smbolic.
You can do the following: >> syms x y z; >> f = sym('f(x,y,z)'); >> g = x * f + y * f^2 + z; >> jacobian(g, [x,y,z]) ans ...

plus de 14 ans il y a | 1

Réponse apportée
find max of a vector between two indice
>> C = arrayfun(@(x) max(B(A(x):A(x+1))),1:length(A)-1) C = 2 9

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
Eliminate duplicate values in a row!
unique(A)

plus de 14 ans il y a | 0

| A accepté

Réponse apportée
transposing the contents of the cell
Let |C| be your cell. You can do the following: C = cellfun(@transpose,C,'un',0);

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
spline? interp?
Do you have the curve fitting toolbox? If so, you can try using the functions |cscvn| for interpolating the spline and |fnplt|...

plus de 14 ans il y a | 0

Réponse apportée
Kohonen (example from help does not work)
Which release are you using? There is a known bug in R2010b and R2011a regarding newc and competlayer. <http://www.mathworks.co...

plus de 14 ans il y a | 0

Réponse apportée
Neural Network - Multi Step Ahead Prediction
Hi Jack, When using |narxnet|, the network performs only a one-step ahead prediction after it has been trained. Therefore, yo...

plus de 14 ans il y a | 20

| A accepté

Réponse apportée
Converting a complex number to polar form and finding it's magnitude
r = abs(z); theta = atan2(imag(z),real(z)); Also... r = abs(z); theta = angle(z);

plus de 14 ans il y a | 1

| A accepté

Réponse apportée
complex numbers in Symbolic Toolbox
*[Updated]* Define the symbolic variables as real and use the function |simplify| when needed: >> syms a b c d real; >> F=a...

plus de 14 ans il y a | 2

| A accepté

Réponse apportée
how to increase iteration limit in glmfit ?
Iteration limit is set to 100 in glmfit. You cannot change it unless you edit the function and change it manually (type |edit gl...

plus de 14 ans il y a | 0

| A accepté

Charger plus