Borrar filtros
Borrar filtros

I get this error, ive already checked parenthesis.Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error.

2 visualizaciones (últimos 30 días)
Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error. To construct
matrices, use brackets instead of parentheses.
this is the line with problems
f = figure ('position', [0, 0] scrz(3),scrz(4));

Respuestas (1)

Voss
Voss el 3 de Dic. de 2022
There is a comma missing:
f = figure ('position', [0, 0] scrz(3),scrz(4));
% ^^ missing a comma
However, I think you probably mean to say:
f = figure ('position', [0, 0, scrz(3), scrz(4)]);

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by