Info

This question is closed. Reopen it to edit or answer.

Request to assist:-

1 view (last 30 days)
Kushal Jagtap
Kushal Jagtap on 25 May 2020
Closed: MATLAB Answer Bot on 20 Aug 2021
I have matrix A=[1,0,3; 0,5,6; 7,8,9] and
I expect output:- x1 = 3; x5 = 6; x7 + x8 = 9;
without any single quote or double quote to variable.
Is there any way to get it?

Answers (2)

KSSV
KSSV on 25 May 2020
A=[1,0,3; 0,5,6; 7,8,9] ;
iwant = A(1,3)+A(2,3)
  3 Comments
KSSV
KSSV on 25 May 2020
are you looking for:
syms x1, x5, x7, x8
x1 == 3 ;
x5 == 6 ;
x7+x8 == 9 ;
Kushal Jagtap
Kushal Jagtap on 25 May 2020
Yes, I just want three equations you mentioned.

Image Analyst
Image Analyst on 25 May 2020
Without any other guidance, like how the various x are related to the A, here is one way that will work:
function [x1,x5,x7,x8] = YourFunction()
x1 = -3;
x5 = 6;
x7 = 2; % Whatever you want.
x8 = 9 - x7;
For more help, see

Community Treasure Hunt

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

Start Hunting!