How to pass a vector to a function that creates matrix

1 view (last 30 days)
b=[1 2 3];
T=inline('[b(i)+9 8;8 7]' , 'i')
I'm trying to make a matrix that works like this:
I input T(i)
so that the output will be :
b(i)+9 8
8 7
how can i do that ?

Answers (1)

Matt J
Matt J on 15 Jan 2020
Edited: Matt J on 15 Jan 2020
>> b=[1 2 3]*10;
>> T=@(i) [b(i)+9 , 8 ; 8 , 7 ];
>> T(3)
ans =
39 8
8 7

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!