why am I receiving "Input data must be a numeric, cell, or logical array." message when I used p= vpa(q) ?
Show older comments
D=[];
Q=[];
for d=3:0.1:5
m=(pi*((d)^2)*8.9)/4;
M=(m/465.96)*1000;
syms t
q=int (m*(103.60+0.034*t),300, 773);
p=vpa(q);
%q in joules
D=[D,d];
Q=[Q,p];
end
xlswrite('C:\sharad\asaas',D','B2:B4902')
xlswrite('C:\sharad\asaas',Q','C2:C4902')
1 Comment
Ahmet Cecen
on 22 Jun 2016
This runs for me without a hitch.
Accepted Answer
More Answers (0)
Categories
Find more on Multidimensional Arrays 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!