ERROR: Undefined function 'sum' for input arguments of type 'cell'. Kindly help me resolve the error.
Afficher commentaires plus anciens
ERROR:
Undefined function 'sum' for input arguments of type 'cell'.
Error in PSCCandPSSCoptiWdVss (line 45)
p=sum(arrayfun(@(x) x*wdwd, 1:2*N, 'un', 0));
CODE:
clear all;
close all;
d=1;
f=9*10^6;
w=2*pi*f;
u=4*pi*(10^-7);
N=15
%ro=1.72*(10^-8); %copper
ro=0.0005 % Resistance
dout=0.15
t=0.000035
wd=[0.005 0.006 0.007 0.008]
s=[0.006 0.007 0.008 0.009]
%Saad Mutasgar
[wdwd,ss]=meshgrid(wd,s);
C1=1
C2=2.46
C3=0
C4=0.2
din=dout-(2*N*wdwd)-((2*N-2)*ss)
rout=dout/2
rin=din/2
U=2;
phi=(dout-din)/(dout+din)
davg=0.5*(dout+din)
L0=((C1.*u.*N.*N.*davg)./2).*(log(C2./phi)+(C3.*phi)+(C4.*phi.*phi))
M_cir=((u.*N.*(dout.^2).*N.*(dout.^2).*pi)./(2.*sqrt(((dout.^2)+(d.^2)).^3)))
syms x
p=sum(arrayfun(@(x) x*wdwd, 1:2*N, 'un', 0));
q=sum(arrayfun(@(x) x*ss, 1:((2*N)-1)))
Réponse acceptée
Plus de réponses (1)
madhan ravi
le 30 Avr 2019
% remove syms x
p = sum(cell2mat(arrayfun(...))) % same goes for q
3 commentaires
Swathi S
le 30 Avr 2019
madhan ravi
le 30 Avr 2019
Modifié(e) : madhan ravi
le 30 Avr 2019
Well, it’s pretty obvious, your trying to add 120 elements with 116 elements, so it’s your call now.
bsxfun(@plus,p(:),q)
Also I believe I have answered the question you originally asked. I suggest you to do MATLAB on-ramp course to cover the fundamental basics of MATLAB.
Swathi S
le 30 Avr 2019
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!