plotting without signal(.csv) file being hard coded

조회 수: 2 (최근 30일)
vsee
vsee 2011년 8월 23일
Hello
I am trying to plot a huge signal to do some time analysis. Here's a piece of my code.
asig = csvread('tek0001CH1.csv',15,0);% input signal from matlab workspace
%tim =sig(1:1000000,1);
aamp = asig(1:5000000,2);%vary this to get more samples
ts = asig(2,1) - asig(1,1);%sampling rate calculated automatically
tim = [0:5000000 - 1]*ts;%vary this in accordance with aamp
time = tim';%transposed to get a column vactor for plotting
ax1 = subplot(2,1,1);plot(time, aamp);
xlabel('time');
ylabel('amplitude(volts)');
grid;
axis([0 max(tim) -0.1 1.9]);
If I have to change my input signal, I have to change it every time since its hard coded. Is it possible to have an interface where the user selects an input signal from the hard drive or an external interface(usb drive)each time the program runs?
Thanks

답변 (1개)

vsee
vsee 2011년 8월 23일
I was eventually able to do this with uigetfile. I wonder if there are other ways
  댓글 수: 1
Fangjun Jiang
Fangjun Jiang 2011년 8월 23일
That's probably the best way based on your task.

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

카테고리

Help CenterFile Exchange에서 Scope Variables and Generate Names에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by