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.

1 次查看(过去 30 天)
DETEnergyDetector(:,11) = DETEnergyDetector(:,11)/max(DETEnergyDetector(:,11));
figure('visible','off');
errorbar(DETEnergyDetectorE(:,3), DETEnergyDetector(:,11), ...
2*DETEnergyDetector(:,11).*DETEnergyDetector(:,12);'k.');

采纳的回答

Geoff Hayes
Geoff Hayes 2022-6-10
@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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by