multiply scalar with struct regarding
Mostrar comentarios más antiguos
is possible to multiply a scalar value with struct field?if possible plz help me?
Respuestas (1)
James Tursa
el 19 de En. de 2018
Well, just this:
s.f = rand(3); % a matrix in a struct field
x = rand; % a scalar
result = x * s.f; % multiply a scalar with a struct field
Was there something else to your problem that is more involved than this?
Categorías
Más información sobre Structures en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!