Beantwortet
I have encountered Error in scatterplot
You inputs should in the form of a matrix and not two vectors. Take a look at the input arguments in the documentation page: ...

etwa 13 Jahre vor | 0

Beantwortet
different results with griddata in Matlab2011b vs Matlab2008a
Take a look at the release notes. There have been few changes in: R2009b > Mathematics > Computational Geometry Functions Bei...

etwa 13 Jahre vor | 0

Beantwortet
How can I tell MATLAB to discard two roots and only proceed with one value?
Does reassigning help? T = T2(3); or removing the first two? T2(1:2) = []; I am not familiar with brayton cycle, but...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
GPU computing without NVIDIA graphic card
I am sorry to say Daniel, that GPU computing in MATLAB uses CUDA, which is specific to NVIDIA graphics cards. CUDA was dev...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot portion of a vector in matlab?
The following piece of code must make things clearer: I make few modifications, Notice I plot with respect to 'x'. If you don't...

etwa 13 Jahre vor | 2

| akzeptiert

Beantwortet
How to plot a number of curves on the same plot ?
I prefer using LINE instead of PLOT since plot tends to reset some properties which maybe unexpected and undesirable. >>...

etwa 13 Jahre vor | 1

Beantwortet
Matlab won't install on Mountain Lion
Hi Bernoulli, MathWorks offers free installation support, you should just call them: http://www.mathworks.com/support/contact_us...

etwa 13 Jahre vor | 0

Beantwortet
how to buy the student version for 99
Did you ever try google? This was the first link: http://www.mathworks.com/academia/student_version/

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Least Squares Method- Νon linear to Linear
You are talking about two different things here. f=aX+b is linear regression which can be solved by either \ or the regr...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
how to choose LQR
LQR always returns a stabilizing feedback gain. Are there 1 or 2 eigen values that are always show up positive? You most...

etwa 13 Jahre vor | 1

| akzeptiert

Beantwortet
How can i improve the performance of a closed loop NARX neural network?
honestly, i wish there is one quick answer to this question but reality is there isn't. make sure your training set includes al...

etwa 13 Jahre vor | 0

Beantwortet
Determine average of an image in .fig format
Here is an example you can hopefully modify it for your use: % Create a figure with a rectangle: rectangle('Position',[0...

etwa 13 Jahre vor | 0

Beantwortet
Best way to do VAR forecast using econometrics toolbox?
Is this something you were looking for: http://www.mathworks.com/help/econ/vgxpred.html Or if you had a specific question ...

etwa 13 Jahre vor | 0

Beantwortet
How to input a 3D matrix to SVMtrain? (2class problem)
Just reshape your data such that svm understands what your observations are and what your targets are: Tr = reshape(Trainin...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
both real and integer variables ga optimization
Andrea, integers are real, however I think you are referring to solving a mixed integer problem. Here is an example of how it ca...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
detrend using cubic splines
Venkatessh, detrending is just a process of removing long term deterministic patterns or in short trends. For example your data ...

etwa 13 Jahre vor | 1

| akzeptiert

Beantwortet
inv(matrix) takes shorter time than \ operator
While inv indeed does involve more operations than \ because it involves inverse as well as multiplication, \ is just one operat...

etwa 13 Jahre vor | 5

| akzeptiert

Beantwortet
solar array webinar record
You can contact the presenter directly for such queries. you can try the presenter's first.last name at mathworks or contact tec...

etwa 13 Jahre vor | 0

Beantwortet
LEAST SQUARES Estimation code
To show you an example I am going to generate some data from the following ARMA model. I am generating this using the ARIMA func...

etwa 13 Jahre vor | 1

| akzeptiert

Beantwortet
how to solve equation trimf(x, [0 4 10]) = 0.5;
>> fminsearch(@(x)(-0.5+trimf(x,[0 4 10])).^2,0) ans = 2 Confirm: >> trimf(2,[0...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Using robust LAR with 'nlinfit' or similar
Have you tried generating MATLAB code for you CFTOOL fit? In CFTOOL, after you perform your fit, click on File -> Generate Co...

etwa 13 Jahre vor | 0

Beantwortet
How to find a system response of armax model for other data set? What e(t) in the system model?
e(t) is noise disturbance or also called innovations terms. Usually assumed to be white noise. Once you have the estimated model...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Range limits with plot background color
clf plot(rand(10,1),'-o') yUp = 0.7; x=get(gca,'XLim'); y=get(gca,'YLim'); patch('XData',[x fliplr(x)],'YData',...

etwa 13 Jahre vor | 4

Beantwortet
eigs and its behaviour
The high condition number of your matrix seems to be making convergence to the default tol=eps difficult. However, if you decrea...

etwa 13 Jahre vor | 2

Beantwortet
How to use monte carlo method in matlab?
Here you go, hope you get full score on your assignment :) f = @(x)sqrt(4-x.^2) N = 1e7; x = 2*rand(N,1); i...

etwa 13 Jahre vor | 0

Beantwortet
Warning when runing fsolve
The Warning is acceptable. If you are running the code I gave you, you already know it is not a SQUARE system. As with all it...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Trained "Neural Network" to be used outside MATLAB
Pre-trained network can be compiled into executables or shared libraries using MATLAB Compiler: http://www.mathworks.com/help...

etwa 13 Jahre vor | 0

Beantwortet
what is simulink model?
Here is an overview of Simulink: http://www.mathworks.com/products/simulink/ Click on Videos and Example for 2 min videos ...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Neural Network forecasting Issue
You are using the wrong type of network for your problem. Essentially you are trying to fit a function which is completely un...

etwa 13 Jahre vor | 1

| akzeptiert

Beantwortet
csaps function in Curve Fitting Toolbox not being found
Please try the following: >> which -all csaps what is the output? This should tell you where it is, if its on the path. ...

etwa 13 Jahre vor | 0

Mehr laden