필터 지우기
필터 지우기

Add two excel data togather

조회 수: 1 (최근 30일)
Exton
Exton 2012년 8월 30일
now i had two excel data inside my matlab and i would like to ask how to add on the two data together and square it???? my excel data name count and counts... need some coding guard line to help to done my FYP
  댓글 수: 2
Matt Tearle
Matt Tearle 2012년 8월 30일
Can you please show a simple example of what the data looks like and what result you'd like.
Exton
Exton 2012년 8월 30일
there are 2 excel file with all my value (only in 1 column ) i want to add those value and square it https://skydrive.live.com/redir?resid=CD8F469E9EEF29A1!278

댓글을 달려면 로그인하십시오.

채택된 답변

Matt Tearle
Matt Tearle 2012년 9월 4일
편집: Matt Tearle 2012년 9월 4일
count = xlsread('file1.xls');
counts = xlsread('file2.xls');
squaredsum = (count + counts).^2;
(although from your screen capture, there don't seem to be any Excel files.)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by