Please I have a code but it keep saying Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Sedulous12
il 10 Giu 2022
Commentato: Sedulous12
il 10 Giu 2022
DETEnergyDetector(:,11) = DETEnergyDetector(:,11)/max(DETEnergyDetector(:,11));
figure('visible','off');
errorbar(DETEnergyDetectorE(:,3), DETEnergyDetector(:,11), ...
2*DETEnergyDetector(:,11).*DETEnergyDetector(:,12);'k.');
0 Commenti
Risposta accettata
Geoff Hayes
il 10 Giu 2022
@Sedulous12 - there is a semi-colon instead of (perphaps) a comma:
2*DETEnergyDetector(:,11).*DETEnergyDetector(:,12);'k.'); % <--- semi-colon before 'k.'
Try changing this line to
errorbar(DETEnergyDetectorE(:,3), DETEnergyDetector(:,11), ...
2*DETEnergyDetector(:,11).*DETEnergyDetector(:,12), 'k.');
as that might remove the error.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical 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!