Borrar filtros
Borrar filtros

How would I write these in MATLAB

1 visualización (últimos 30 días)
Oscar
Oscar el 30 de Nov. de 2023
Comentada: Oscar el 1 de Dic. de 2023

Respuesta aceptada

James Tursa
James Tursa el 30 de Nov. de 2023
Editada: James Tursa el 30 de Nov. de 2023
Depends on what those subscripts mean. E.g., maybe this
y41 = -(x41^1.5 * cos(x41)^3) + 40;
y42 = x42 * sin(x42^2);
or this
y(41) = -(x(41)^1.5 * cos(x(41))^3) + 40;
y(42) = x(42) * sin(x(42)^2);
or this
y(4,1) = -(x(4,1)^1.5 * cos(x(4,1))^3) + 40;
y(4,2) = x(4,2) * sin(x(4,2)^2);
We need more context to answer your question.

Más respuestas (0)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by