i'm trying to get a simulation with matlab for a differential system with 6 equations [closed] - matlab

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 days ago.
Improve this question
I'm trying to solve the following system of differential equations with Matlab.enter image description here
simulation with this parameters

Related

can anyone teach me how to use gamultiobj to optimize more than 3 objectives on Matlab? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 days ago.
Improve this question
can you teach me how to use gamultiobj to optimize more than 3 objectives on Matlab even if gamultiobj is not efficient? thank you
i want to use bpnn to match gamultiobj to optimize more than 3 objective.

Which toolbox can perform MIMO system identification in Matlab? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I would like to perform system identification on a MIMO (multiple input, multiple output) system in Matlab. Are there any functions or toolboxes available to do this?
Is it possible to perform system identification on a MIMO (multiple input, multiple output) system in Matlab?
Yes.

Group Algebra in Matlab [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
What is the best way to implement group algebra using Matlab. More specifically, I only want to work with permutation groups (and their subgroups) but would like a way to find kernels and cosets without coding a brute force version myself.
GAP is a 'System for Computational Discrete Algebra' and is able to do all the things requested in the question.

AFC Toolbox and converting pfiles to mfiles [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Has anyone ever worked with AFC toolbox?
Is there a way to convert pfiles to mfiles?
Never heard of the AFC toolbox, and no, you cannot reverse-engineer p-coded files back into MATLAB files, see http://www.mathworks.co.uk/help/matlab/matlab_prog/protect-your-source-code.html for more details.

C-DLL to be used by MATLAB? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Since MATLAB is not good with loop, I am putting some of the looping into a c-dll(visual studio 6.0).
What do I have to do in building the c-dll that is different than
normal dlls?
How do I interface with the DLL from MATLAB?
I recommend making them into MEX-functions. Read the MATLAB help: http://www.mathworks.co.uk/help/techdoc/matlab_external/f29322.html.
And FWIW, MATLAB's fine at looping if you write your code well.