array operations in app designer
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Dominik Gajdos
am 14 Apr. 2024
Kommentiert: Dominik Gajdos
am 14 Apr. 2024
I have this simple operation
Both arrays are 1x6, but still got error
Arrays have incompatible sizes for this operation.
app.delta1 = sum(abs(app.uhly_array - app.theta1));
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 14 Apr. 2024
Bearbeitet: Fangjun Jiang
am 14 Apr. 2024
Need to specify the .Value property? If not, just pause the code and check its value, app.uhly_array and app.theta1
app.delta1.Value = sum(abs(app.uhly_array.Value - app.theta1.Value))
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!