Load .mat file

3 次查看(过去 30 天)
Negar
Negar 2011-2-4
After many hours trying to figure out how to load a file, I finally gave up ! It's my first time to use Load command, So please give me a basic explanation I have tried to load a file by the following code:
load pulse_7cm_-14dB_10x_aver;
t = Ts:Ts:size(RF)*Ts;
subplot(2,2,1);
plot(1e6*t,1e3*RF);
xlabel('time [\mus]');ylabel('Voltage [mV]');title('T');
but this error appears:
Error in ==> wer at 1
load pulse_7cm_-14dB_10x_aver;
What is the problem?

采纳的回答

Vieniava
Vieniava 2011-2-4
check that current directory contains your file to load - if yes, try this (use an extensioni, if exists):
load('pulse_7cm_-14dB_10x_aver.wav') % ssumed that this is a WAV file
you may look on handy function uigetfile (here is documentation )
  1 个评论
Negar
Negar 2011-2-4
Thank you Vieniava it worked !!!!!!

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by