projects
/
analyse_servo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
802189f
)
Fix bar to Pa calculation
trunk
author
Lukáš Jiřiště
<jiriste@icpf.cas.cz>
Mon, 16 Dec 2024 09:33:05 +0000
(10:33 +0100)
committer
Lukáš Jiřiště
<jiriste@icpf.cas.cz>
Mon, 16 Dec 2024 09:35:49 +0000
(10:35 +0100)
process_file.m
patch
|
blob
|
history
diff --git
a/process_file.m
b/process_file.m
index c7ed1d1c92b5c3d3326266ab0dc551db9cd3b3ae..a5ac016e20627ee1079a0e71d88e1a970e95970d 100644
(file)
--- a/
process_file.m
+++ b/
process_file.m
@@
-1,5
+1,5
@@
function [p n] = process_file(V_fill_ul, V_cell_ul, Vvz_ul)
[name path] = uigetfile();
data = importdata([path name]);
- [p n] = process_experiment(data(:,1)', data(:,2)'*1e
6
, V_fill_ul/1e9, V_cell_ul/1e9, Vvz_ul/1e9);
+ [p n] = process_experiment(data(:,1)', data(:,2)'*1e
5
, V_fill_ul/1e9, V_cell_ul/1e9, Vvz_ul/1e9);
end