Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8291053
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T12:59:59+00:00 2026-06-08T12:59:59+00:00

I need a code to omit the diagonal elements of a matrix for example

  • 0

I need a code to omit the diagonal elements of a matrix
for example if

A =

[1 2 3;
 1 2 3;
 1 2 3];

the the output come:

[2 3;
 1 3;
 1 2];

how can i do it simply ( i know a long one but i need it simple)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T13:00:01+00:00Added an answer on June 8, 2026 at 1:00 pm

    Here’s one solution:

    Alower = tril(A, -1);
    Aupper = triu(A,  1);
    result = Alower(:, 1:end-1) + Aupper(:, 2:end)
    

    Demo:

    > A = [1 2 3; 1 2 3; 1 2 3]
    A =
    
       1   2   3
       1   2   3
       1   2   3
    
    > tril(A, -1)(1:end, 1:end-1) + triu(A, 1)(1:end, 2:end)
    ans =
    
       2   3
       1   3
       1   2
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Do interfaces need a virtual destructor, or is the auto-generated one fine? For example,
I need code example for: custom JavaScript function that takes a single object as
I need code or pointer for performing digit-wise addition. For example: 59 + 11
I need code for read json data from url in ios (objective c) If
Am I doing something wrong if I need code like this in a Controller?
How to create simple PHP COMET server page displaying current time? I need code
I need to code certain Dialogs as Activities that look like dialogs. For this
I need PHP code to replace comma or whitespace with hyphen For eg: If
I need source code for AutoMapper version 1.0.0.155 It would be helpful if you
I need to code a solution for a certain requirement, and I wanted to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.