필터 지우기
필터 지우기

Xlsread and xlswrite; easy small help

조회 수: 2 (최근 30일)
Jose
Jose 2012년 7월 25일
Thank you for your interest. My question is: I have a file written on Excel, and I need to write the answers from my code onto the sheet. I can view them in Matlab but can't seem to export them to Excel.
Here is my code:
%%Test
%
clear all
clc
aux=1
for(grados=0:1:360)
radianes=grados*pi/180;
f1(aux)=sin(radianes);
ejex(aux)=grados;
aux=aux+1;
end
f1
OK, well, I see the answers on matlab, but I want to take that info descending vertical order to be shown in Excel please help me with my xlswrite

채택된 답변

Conrad
Conrad 2012년 7월 26일
You could try this:
excelFileName = 'Test.xls';
f1 = sin((0:360)*pi/180)';
success = xlswrite(excelFileName,p);
Note that you do not need a for loop to calculate f1 but you can pass in a whole array into the "sin" function.
Conrad
  댓글 수: 1
Jose
Jose 2012년 7월 26일
편집: Jose 2012년 7월 26일
I figured it out thanks alot

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

추가 답변 (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