Community Profile

photo

Javier Bastante


Universidad Autónoma de Madrid- UAM

Last seen: 2年弱 前 2015 年からアクティブ

Followers: 0   Following: 0

連絡

統計

All
  • First Review
  • Knowledgeable Level 2
  • Revival Level 1
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

質問


How to calculate Akaike Information Criterion and BIC from a Neural Network?
I know "aic" function exists, but I don't know how to use it with fitting neural networks. Any help? Thank you in advance

約7年 前 | 2 件の回答 | 0

2

回答

回答済み
help, pls how can i convert from syms to double
It's true that you haven't used s but the answer to your question is as easy as this: >> syms s >> number=s+s-3/4 %The res...

約8年 前 | 0

| 採用済み

回答済み
Hi , I am very new to Matlab, so I am facing some problems. Would u mind give me a bit of help?
Function solve can help you here. Your input in that function can be symbolic variables or string variables, so thats what we ar...

約8年 前 | 0

回答済み
how to write this equation in matlab ?? Please help
Once defined N,A,kr1,theta,fi1,FI,B,kr2 and fi2, run this code: AF=0; for n=1:N; AF=AF+(A(n)*exp(j*kr1*sin(theta)*(cos(fi...

約8年 前 | 0

回答済み
How to use user input for fittype function
Try this: ft = fittype( 'a*x^2+b*exp(n*x)', 'independent', 'x', 'dependent', 'y' )

約8年 前 | 0

| 採用済み

回答済み
What is a linear-linear plot, log-linear plot,linear-log plot and log-log plot?
See this picture: http://blogs-images.forbes.com/naomirobbins/files/2012/01/linear_log.jpg In the first one you have a linear ...

約8年 前 | 0

回答済み
How to get value from GUI and use it into another .m file ?
See this: http://es.mathworks.com/matlabcentral/answers/273776-i-have-one-gui-say-g1-that-calculates-a-certain-value-and-disp...

約8年 前 | 0

回答済み
I have one GUI (say G1) that calculates a certain value and displays it in an editbox.I need this value to be passed to an editbox in another GUI (say G2) on the click of a pushbutton for further calculations.Please help.
My advice is to save the variable in a *.mat file, such as: save myfile.mat varname and to get the value you just type ...

約8年 前 | 0

回答済み
I want to 3D plot the functions below but nothing appear on the figure, what should I add/change?
You are just giving 1 value to a,r ant theta. You have to give them different values using a=ini:h:fin loops. Hope it works with...

約8年 前 | 0

| 採用済み

回答済み
After curvefitting data, can I import the "fitresult" text (cfit) into the plot figure, also can I export the coefficients to excel
Using this: coef=coeffvalues(fitresult); you can save your partameter values in a ROW variable called "coef". The order ...

約8年 前 | 0

質問


How can I set Aspen HYSYS compositions from MATLAB?
Hi, is there anyone here who knows who to modify the compositions of a stream in Aspen HYSYS from MATLAB. I can read them, but I...

約8年 前 | 0 件の回答 | 0

0

回答

解決済み


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

9年弱 前

解決済み


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

9年弱 前

解決済み


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

9年弱 前

解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

9年弱 前

解決済み


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

9年弱 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

9年弱 前

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

9年弱 前

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

9年弱 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

9年弱 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

約9年 前