When calling a function or indexing a variable, use parentheses.
Mostra commenti meno recenti
Hello I am trying to solve this but I need some help to make it work. Kinda new working around matlab. your help would be totally appreciated. Thank you.

Risposte (2)
The error message tells you what to do. diag() is a function; [1 2 3] is a vector, so:
diag([1 2 3])
Walter Roberson
il 20 Nov 2023
0 voti
The syntax for calling functions is function name followed by ( followed by a list of parameters followed by )
You are trying to use diag[Expressions] -- which would be the kind of calling syntax that Mathematica would use, but not MATLAB.
Use diag([Expressions]) instead.
Categorie
Scopri di più su Matrix Indexing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!