Give "Input data must be a numeric, cell, or logical array" error. How to take data from loop Vpasolve to excel?
Show older comments
How can i take answer of this loop in excel ?
L = Ns*A*k*T
[num] = xlsread('Isc.xlsx');
F = num
[num] = xlsread('Voc.xlsx');
B = num
VLA = size (F,1);
for i = 1:1:VLA
for j= 0:9:18
syms Q
eq = Q == (F(i,1)*(1-(exp(q*(j - B(i,1) + (Q*Rs))/L))));
sol = vpasolve(eq)
end
end
xlswrite('C:\Users\S. S.\Desktop\figure', sol)
2 Comments
Mohammad Sulaiman Stanekzai
on 7 Mar 2019
Edited: Mohammad Sulaiman Stanekzai
on 7 Mar 2019
Answers (0)
Categories
Find more on Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!