diag(.) does not work

diag function works in a wrong way as shown in the figure. How can i fix it?

2 Comments

What happens when you do,
>> whos diag
whos diag -all

Sign in to comment.

Answers (2)

Walter Roberson
Walter Roberson on 27 Oct 2018

1 vote

I suspect you accidentally assigned zeros to a variable named diag, so your call is indexing rather than invoking the function.
Try
clear all
x=[8 1 6;3 5 7;4 9 2]
diag(x)

Products

Tags

Asked:

on 27 Oct 2018

Commented:

on 27 Oct 2018

Community Treasure Hunt

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

Start Hunting!