Borrar filtros
Borrar filtros

X and Y coordinate extraction from a vector

2 visualizaciones (últimos 30 días)
mahesh bvm
mahesh bvm el 29 de Oct. de 2018
Comentada: KSSV el 30 de Oct. de 2018
I have a vector which represents displacement over time. Its a 7116 by 1 matrix. How do i extract the x and y coordinates from this.
  2 comentarios
KSSV
KSSV el 29 de Oct. de 2018
You have only displacement ..values...how do you expect to have (x,y) positions? You can only get the indices....if it is okay..attach the data.
mahesh bvm
mahesh bvm el 29 de Oct. de 2018
This is the data. Please take a look into it.

Iniciar sesión para comentar.

Respuestas (1)

KSSV
KSSV el 29 de Oct. de 2018
[num,txt,raw] = xlsread('displacement.xls') ;
x = 1:length(num) ;
plot(x,num) ;
  2 comentarios
KSSV
KSSV el 30 de Oct. de 2018
mahesh bvm commented: It works! Thank you so much. May I know the difference between the data coded in 'num' and 'raw' outputs. I did go through the xlsread but could not understand it clearly.
KSSV
KSSV el 30 de Oct. de 2018
num gives you only numeric data.
txt gives you only text data.
raw gives you entire data in a cell array.
Thanks is accepting/ voting the answer.

Iniciar sesión para comentar.

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by