How can I simulate a moving average model(1) with parameter =0.7? [closed] - matlab

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I simulate a ma(1) model with parameter =0.7 using matlab?

The Systems Identification Toolbox may have what you need.
If you need or want to do it by hand, however (homework?), I would suggest outlining the steps of what needs to be done (break up the problem in parts, starting from the definition of MA models) and asking a more detailed question when you get stuck.

Related

Getting a probability from a classifier [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm doing some work classifying images and was looking for a classifier that gives its answer in turns of a probability instead of true/false like svmclassify. Anyone have any suggestions for toolboxes that have this feature?
RVMs' (Relevant Vector Machines) output probability and if you want to use them, download Kevin Murphy's Machine Learning toolkit. Matlab doesn't have an RVM implementation as far as I know.

matching game for iphone [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Can any one help me to what is basic logic for matching game or memory game?Is there any tutorial or reference is available for this kind of games?please help me to solve
Like this?
http://mobile.tutsplus.com/tutorials/corona/corona-sdk-create-a-memory-match-game/
http://codecanyon.net/item/iphone-memory-game/243940
http://iphonedevsdk.com/forum/iphone-sdk-game-development/13001-tic-tac-toe-tutorial-a-walkthrough.html
Easy google search on what you wanted.

how to create the calculator using bodmas rule in iphone? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I need to create a sample calculator on the screen like to display 3+(5*8) using bodmas rule then click the equal to display the result how can i do this any one help me
okay for the question you have asked there is a sample code for a calculator for this requirement check here

matlab - graph plotting [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
how to do curve fitting ??
i tried plot(cfit,x,y) and it didn't work??
If available have a look at the Curve Fitting Toolbox. You can start it using the command cftool. Please elaborate your problem.

How can scatter the code to the core multi-core processor [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Interested in:
1) Is it possible to do this in a unix like OS?
2) If it is possible to dig?
I would be happy all the answers.
Either create multiple processes (e.g., fork) or multiple threads (e.g., pthread_create).