array operations in app designer
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Dominik Gajdos
il 14 Apr 2024
Commentato: Dominik Gajdos
il 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 Commenti
Risposta accettata
Fangjun Jiang
il 14 Apr 2024
Modificato: Fangjun Jiang
il 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))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!