필터 지우기
필터 지우기

How can i make use of csv file format in my matlab coding

조회 수: 3 (최근 30일)
Khan
Khan 2012년 9월 19일
i have vibration data store from machine in csv file format. i tried to load data to Matlab by command " load vib_data.csv" but it fails to work.

채택된 답변

Shane
Shane 2012년 9월 19일
Yes, csvread will be the function to use as it brings in all of the data into a single matrix without having to convert it from a cell array.
A = csvread('filepath\filename.csv')
Please keep in mind that csvread works with numeric data only. I would assume that your vibration data is most likely all numeric anyways but any headers or annotations that are present in the csv will not be imported by matlab.
  댓글 수: 5
Thomas
Thomas 2012년 9월 19일
How big is your data and how much memory do you have on the system.. Read only as much of the data that you need. This might mean that you have to write your own parser, but that's not too hard with the indicated file format.
Khan
Khan 2012년 9월 19일
thank you all for your kind cooperation i will find out how much data i need for my analysis because i have total data about 3 GB. if i had any inconvenience i will let you know Thanks and regards Khan

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Thomas
Thomas 2012년 9월 19일

카테고리

Help CenterFile Exchange에서 Vibration Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by