Formatting a vector to not include the first value

6 visualizaciones (últimos 30 días)
Adil Saeed
Adil Saeed el 14 de Ag. de 2022
Comentada: Les Beckham el 16 de Ag. de 2022
RL = [1;2;3;4;5;6;7;8;9;10];
t = 5;
RL = RL + 10*log10(t);
so this is an example of my code, however i do not want the last equation to include the first value from the original vector and i want it to hold that value. so the new RL vector, the first value is 1 and the rest is some new value based on this calculation.

Respuesta aceptada

Les Beckham
Les Beckham el 14 de Ag. de 2022
It seems like you could benefit from taking this introduction to using Matlab: Matlab onramp
This is an example of very basic indexing which you will learn if you go through this simple introduction. to using Matlab.
After you go through that, you will learn that using an index vector allows you to select which elements of a vector are selected.
For your example:
RL = [1;2;3;4;5;6;7;8;9;10];
t = 5;
RL(2:end) = RL(2:end) + 10*log10(t)
RL = 10×1
1.0000 8.9897 9.9897 10.9897 11.9897 12.9897 13.9897 14.9897 15.9897 16.9897
This tells Matlab to only modify the elements of RL from indices 2 through the end of the vector RL.
Please take advantage of the free training. Matlab is very powerful if you take the time to learn to use it.
  2 comentarios
Adil Saeed
Adil Saeed el 15 de Ag. de 2022
Much appreciated and thank you for the providing the link to develop my MATLAB skills further
Les Beckham
Les Beckham el 16 de Ag. de 2022
You are quite welcome.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by