Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
matlab から、Excel シートの最初の行だけを読みたいのですが、シートの列数がわかりません。つまり、同等のことをしたい
filename = 'myExample.xlsx'; columnB = xlsread(filename,'B:B') .
方法を教えていただけるとありがたいです。
firstrow = xlsread(filename, '1:1')
するべきです。