I am beginner simulink how can i solve this error?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens

I want to do u = y + v as I type the matlab function directly in the form of y + v == u and I get the following error. How can I fix it.

0 commentaires
Réponses (1)
Ameer Hamza
le 30 Avr 2020
Bahadir, as I mentioned on your other question. MATLAB does not automatically know how do you want to convert one number to two numbers. You need to specify how to you want to get y and v from the u value. MATLAB does no know what are y and v in the equation: y + v == u. == operator is used in MATLAB for comparison, not to assign a value.
y and v are the output of the block, and u is input. You need to write something like this inside the MATLAB function block.
y = u/2;
v = u/2;
4 commentaires
Ameer Hamza
le 1 Mai 2020
Such a project is clearly beyond the scope of websites like MATLAB Answers. We can answer questions related explicitly to MATLAB and Simulink but such a project requires much broader expertise. I suggest you break down your problem into small parts and create new questions only when you face a problem, specifically related to MATLAB.
Voir également
Catégories
En savoir plus sur Event Functions dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!