error in writing the data in excel

조회 수: 1 (최근 30일)
sunitha
sunitha 2021년 1월 18일
댓글: sunitha 2021년 1월 19일
how to write cube roots to excel file(single cell)
  댓글 수: 2
Ive J
Ive J 2021년 1월 18일
doc writecell
doc writematrix
doc writetable
sunitha
sunitha 2021년 1월 19일
i have used this commands before but i am not getting the result.THis is the code that i wrote. i got the result, but i am unable to send the data to the excel file.i am sending the excel file can u help me to find out this ??
clear all
close all
syms N
Qo=xlsread('suspended.xlsx','A:A')
R=xlsread('suspended.xlsx','B:B')
No=xlsread('suspended.xlsx','C:C')
X=xlsread('suspended.xlsx','D:D')
r = (No-N)./No ;
V = 2435 ;
k = 1.076 ;
Kn = 0.27 ;
nX = size(X,1 );
solutions = cell(nX,1 );
for S = 1 : nX
solutions{S} = solve(Qo(S) .* (1+R(S)) .* (No(S)-N) .* r(S) - V*((X(S)*k*N)./(Kn+N)), N );
vpa(solutions{S })
end
celldisp(solutions )
writetable(ans,'suspended.xlsx')

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

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