Can I define variable in matlab?
Mostrar comentarios más antiguos
Do we need any particular command if i need variable. If A=[1 2 3] i need this as: A=[X1 X2 X3]
8 comentarios
Steven Lord
el 13 de Mzo. de 2017
Can you say a little more about what you're trying to do, how you would use that A matrix later in your code?
dpb
el 13 de Mzo. de 2017
Anticipating that, most likely this isn't the way to proceed; see the section "Alternatives to the eval Function" at
doc eval
particularly the second, "Variables with Sequential Names"
kritika adhikari
el 14 de Mzo. de 2017
Editada: Walter Roberson
el 14 de Mzo. de 2017
KSSV
el 14 de Mzo. de 2017
what you are trying to do is not clear.
kritika adhikari
el 14 de Mzo. de 2017
ES
el 14 de Mzo. de 2017
From what I understand from your code, you can simply put
y = X (int_data);
If this is not what you need, Please say what are your inputs and outputs? The code you have provided is not enough!
kritika adhikari
el 14 de Mzo. de 2017
Walter Roberson
el 14 de Mzo. de 2017
Well, then what I posted will allow you to do that. You should go ahead and try and see if it works for your needs.
I think you are making a mistake, though. The output from an interleaver would normally be symbols, not variables. For practical purposes, the symbols would normally be encoded as non-negative integers that could be used as indices.
Respuesta aceptada
Más respuestas (1)
From what I understand from your code, you can simply put
y = X (int_data);
[ Example:
X = [2,4,6,8,10,12,14,16,18]
int_data=[4 2 1 5 6 3];
disp(X(int_data));
>> 8 4 2 10 12 6
]
If this is not what you need, Please say what are your inputs and outputs? The code you have provided is not enough!
Categorías
Más información sobre Whos en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!