blob: 1137bac4046ad09f7734d38ff3edb7196be0246a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Chapter-10,Example 10,Page 255
clc();
close();
//E_H = -0.0592*pH
//E_cell = E_H = -0.0592 *pH
E_cell = 0.29
pH = E_cell/0.0592
printf('the pH of the solution is pH = %.2f ',pH)
|