Undefined operator '^' for input arguments of type 'cell'.
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
irfan
am 19 Jul. 2016
Bearbeitet: Walter Roberson
am 19 Jul. 2016
c0=1;
c1=2;
c3=4;
A={((c0/2)-(c1*c2/6)+(c2^3/27))-[(c0/2)-(c1*c2/6)+((c2^3/27)^2)+(c1/3-c2^2)^3]^1/2}^1/3;
i am getting the above error
1 Kommentar
Akzeptierte Antwort
Azzi Abdelmalek
am 19 Jul. 2016
Bearbeitet: Azzi Abdelmalek
am 19 Jul. 2016
c0=1;
c1=2;
c2=5
c3=4;
A=(((c0/2)-(c1*c2/6)+(c2^3/27))-[(c0/2)-(c1*c2/6)+((c2^3/27)^2)+(c1/3-c2^2)^3]^1/2)^1/3;
You can't write
a= {2+3}^3
write
a=(2+3)^3
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matched Filter and Ambiguity Function finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!