Importing data sheet from excel sheet to matlab
2 ビュー (過去 30 日間)
古いコメントを表示
回答 (1 件)
Amit Nambiar
2013 年 10 月 2 日
編集済み: Amit Nambiar
2013 年 10 月 2 日
to find value of d array your arrays a and b must have the same no. of elements...I have modified that and printed the table that contains a b and d... If you want some more information...reply to this answer... happy to help always... :P clc a = 1:3:20;
a=a';
b = 1:2:14;
b=b';
d=((a-b)./a).*100;
table=horzcat(a,b,d);
display(table);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!