Plotting from a mat file

4 ビュー (過去 30 日間)
Emil Eterovic
Emil Eterovic 2017 年 3 月 25 日
コメント済み: Emil Eterovic 2017 年 3 月 27 日
I need to plot some data which is contained within the mat file Podaci.mat that is attached. The file contains 7 structures,each one is a different type of measurement. Structures are 6332x25(5). Now i need to plot all of those 6332 data(for all 7 structures,data in their fifth column),where on the y-axis there will be those data and on the x-axis dates,from 1991 to 2008. Can anybody help me?

回答 (1 件)

Baltam
Baltam 2017 年 3 月 27 日
load('Podatci.mat')
figure(1); plot(AVHRR_91_08(:,1), AVHRR_91_08(:,5), CMC_91_08(:,1), CMC_91_08(:,5))
just like this but for all sets?
  1 件のコメント
Emil Eterovic
Emil Eterovic 2017 年 3 月 27 日
Is this correct? Because if i do this my graph looks weird(pic1). It should not be like that,the peaks of the graph should be easily distinguished like pic2 for example.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeBar Plots についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by