Fixed bug with plotting scatter plot.

This commit is contained in:
Ernie Pasveer
2026-07-13 17:08:17 -05:00
parent be522e48b9
commit 7d12064e84
6 changed files with 65 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
hello481
+11
View File
@@ -0,0 +1,11 @@
.PHONY: all
all: hello481
hello481: hello481.cpp
g++ -g -o hello481 hello481.cpp
.PHONY: clean
clean:
rm -f hello481 hello481.o
+1
View File
@@ -0,0 +1 @@
break -source /nas/erniep/Development/seer/tests/hello481/hello481.cpp -line 17
+19
View File
@@ -0,0 +1,19 @@
#include <string>
#include <iostream>
int main () {
double pos[40];
double vit[40];
double posv = 1.0;
for (int i=0; i<sizeof(pos); i++) {
pos[i] = posv;
posv -= (1.0 - 0.0) / double(sizeof(pos));
}
return 0;
}
+25
View File
@@ -0,0 +1,25 @@
{
"seerproject": {
"executable": "hello481",
"postgdbcommands": [
""
],
"pregdbcommands": [
""
],
"startmode": {
"arguments": "",
"breakatfirstinstruction": false,
"breakinfunction": false,
"breakinfunctionname": "",
"breakinmain": true,
"breakpointsfile": "/nas/erniep/Development/seer/tests/hello481/breakpoints.seer",
"nobreak": false,
"nonstopmode": false,
"randomizestartaddress": false,
"showassemblytabmode": "auto"
},
"symbolfile": "",
"workingdirectory": ""
}
}