نمايش پست تنها
قديمي ۰۶-۲-۱۳۹۳, ۰۸:۱۸ بعد از ظهر   #5 (لینک دائم)
kamran_kenzo Male
عضو فوق فعال
 
آواتار kamran_kenzo
 
تاريخ عضويت: تير ۱۳۸۹
محل سكونت: Tehran
پست ها: 190
تشكرها: 4
91 تشكر در 74 پست
پيش فرض

كد:
          data = xlsread('two_column_file.xlsx'); 
 
          first_column = data(:,1); 
          second_column = data(:,2); 
 
          % for example for a list of points with x values in the first column 
          % and y values in the second column, you would use: 
 
          data = xlsread('shock_tower_pts.xlsx'); % two columns of data 
 
          xs = data(:,1); 
          ys = data(:,2); 
 
          % and for example you might want to plot this data: 
 
          plot(xs,ys);
kamran_kenzo آفلاين است   پاسخ با نقل قول