Borrar filtros
Borrar filtros

Add two excel data togather

1 visualización (últimos 30 días)
Exton
Exton el 30 de Ag. de 2012
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 comentarios
Matt Tearle
Matt Tearle el 30 de Ag. de 2012
Can you please show a simple example of what the data looks like and what result you'd like.
Exton
Exton el 30 de Ag. de 2012
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

Iniciar sesión para comentar.

Respuesta aceptada

Matt Tearle
Matt Tearle el 4 de Sept. de 2012
Editada: Matt Tearle el 4 de Sept. de 2012
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.)

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by