How to pass a vector to a function that creates matrix

1 visualizzazione (ultimi 30 giorni)
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 ?

Risposte (1)

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

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by