<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Analysis and Experimental Realization of the Logistic Map Using Arduino Pro Mini</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>ymyr Rusyn</string-name>
          <email>rusyn_v@ukr.net</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>Universitas Muhammadiyah Tasikmalaya</institution>
          ,
          <addr-line>Jl. Tamansari No. KM 2,5, Mulyasari, Kec. Tamansari, Tasikmalaya, Jawa Barat, 46196</addr-line>
          ,
          <country country="ID">Indonesia</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Yuriy Fedkovych Chernivtsi National University</institution>
          ,
          <addr-line>Kotsybynsky str., 2, Chernivtsi, 58012</addr-line>
          ,
          <country country="UA">Ukraine</country>
        </aff>
        <aff id="aff2">
          <label>2</label>
          <institution>Zaporizhzhia National Technical University</institution>
          ,
          <addr-line>Zhukovsky str., 64, Zaporizhzhia, 69063</addr-line>
          ,
          <country country="UA">Ukraine</country>
        </aff>
      </contrib-group>
      <abstract>
        <p>In this paper, we used one-dimensional system that demonstrate chaotic behavior. Equation, analysis and system conditions are presented. Modern software environment LabView was used for analysis of the iteration series with different parameter r. Connection scheme, nominal components and programming code are also presented. For practical realization and visualizing of the logistic map we used Arduino Pro Mini and ten light-emitting diodes (LEDs) with ten resistors for each part of segment of the range [0;1]. The Arduino was connected to a computer through the USB port and programmed using a language similar to C++. Sketch was uploaded into Arduino using program software ArduinoIDE.</p>
      </abstract>
      <kwd-group>
        <kwd />
        <kwd>Nonlinear</kwd>
        <kwd>logistic map</kwd>
        <kwd>Arduino</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>
        Theory of chaos applied in various fields of research, such as economy [
        <xref ref-type="bibr" rid="ref1 ref2 ref3">1-3</xref>
        ],
biology [
        <xref ref-type="bibr" rid="ref4">4</xref>
        ], mathematics [
        <xref ref-type="bibr" rid="ref10 ref11 ref12 ref5 ref6 ref7 ref8 ref9">5-12</xref>
        ], optics [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ], robotics [
        <xref ref-type="bibr" rid="ref14">14</xref>
        ], memristors [
        <xref ref-type="bibr" rid="ref15 ref16 ref17 ref18 ref19">15-20</xref>
        ],
electronics schemes [21-34], etc.
      </p>
      <p>The logistic map is a one-dimensional discrete-time map that, despite its formal
simplicity, exhibits an unexpected degree of complexity. Historically it has been one
of the most important and paradigmatic systems during the early days of research on
deterministic chaos. The map was popularized in a 1976 paper by the biologist Robert
May [35] in part as a discrete-time demographic model analogous to the logistic
equation first created by Pierre François Verhulst.</p>
      <p>The logistic map is defined by the following equation:
xn+1 = rxn(1-xn)
(1)</p>
      <p>Copyright © 2020 for this paper by its authors. Use permitted under Creative
Commons License Attribution 4.0 International (CC BY 4.0).</p>
      <p>The logistic map is a very simple system, which can produce chaotic behavior with
the right values of the parameter r. Sensible values of r range from 0 to 4; also, the
values of x range from 0 to 1.</p>
      <p>Fig. 1 shows plot the behavior of the orbits for r = 2.6, r = 3.3, and r = 3.9. The
software implementation of logistic map using LabView software environment shows
in Fig. 2.</p>
    </sec>
    <sec id="sec-2">
      <title>ARDUINO board</title>
      <p>The top board is Arduino Pro Mini, the bottom – USB-UART / USB-TTL
converter and some connectors (Fig. 5).</p>
      <p>Now about the Arduino Pro Mini board / platform. Structurally, it is a board with a
microcontroller soldered on it, a RESET button, a power chip, and other peripherals
that are not essential for us at this stage.</p>
      <p>There are two versions of the Pro Mini: one running at 3.3V at 8 MHz, the other at
5V at 16 MHz. The board is based on the Atmega 168 or Atmega 328 microcontroller
– the difference between them is the volume of the system-programmable Flash
memory – 16 or 32 kB. This is the so-called "program memory", i.e. the memory in
which the program will be recorded and its contents will not change during operation.
Atmega is built on the so-called Harvard architecture in which the "program memory"
and "data memory" are implemented separately, for greater speed and reliability. The
"data memory" is divided into 2 parts: operational SRAM, which for 168 and 328 is
1 KB, and a permanent EEPROM (Electrically Erasable Programmable Read-Only
Memory) of 512 bytes, data from which is not "lost" when the power is turned off.</p>
      <p>The connection scheme is quite simple and it’s rather difficult to make a mistake
(Fig. 6).</p>
      <p>Arduino programs require two mandatory functions: setup() and loop(). Any
variable or constant defined outside these two functions is considered to be global. In the
setup() function, we tell the microcontroller that there are ten light-emitting diodes
connected to the digital pins and that they are intended to be turned on and off. In the
loop() function, the logistic map is iterated, and the visualization process takes place
as we observe the LEDs turning on and off, one after another, following the evolution
of the nonlinear system.</p>
      <p>The software to connect the LEDs using the following code:
// Logistic Map
// Select of the pin for each light-emitting diode (LED)
const int NbrLEDs = 10;
const int LEDpin[] = {4, 5, 6, 7, 8, 9, 10, 11, 12, 13};
const int wait = 500; // Wait for 500 milliseconds
// Parameters of Logistic Map
const double r = 3.8; // Logistic map constant
double X0 = 0.3; // Initial position
double X = X0; // X0 - first calculated point
// For initializes the LED pins use setup ()
void setup() {
for (int i = 0; i &lt; NbrLEDs; i++) {</p>
      <p>pinMode(LEDpin[i], OUTPUT);
}</p>
      <p>}
// For turn on/off LEDs and iterates the Logistic Map use
loop ()
void loop ()
{
if (X &lt; 0.1)</p>
      <p>blinkLED(LEDpin [0]) ;
else if ((X &gt;= 0.1 ) &amp;&amp; (X &lt; 0.2))</p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref1">1</xref>
        ]);
else if ((X &gt;= 0.2) &amp;&amp; (X &lt; 0.3))
      </p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref2">2</xref>
        ]);
else if ((X &gt;= 0.3) &amp;&amp; (X &lt; 0.4))
      </p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref3">3</xref>
        ]);
else if ((X &gt;= 0.4) &amp;&amp; (X &lt; 0.5))
      </p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref4">4</xref>
        ]);
else if ((X &gt;= 0.5) &amp;&amp; (X &lt; 0.6))
      </p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref5">5</xref>
        ]);
else if ((X &gt;= 0.6) &amp;&amp; (X &lt; 0.7))
      </p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]);
else if ((X &gt;= 0.7) &amp;&amp; (X &lt; 0.8))
      </p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref7">7</xref>
        ]);
else if ((X &gt;= 0.8) &amp;&amp; (X &lt; 0.9))
      </p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref8">8</xref>
        ]);
else
      </p>
      <p>
        blinkLED(LEDpin[
        <xref ref-type="bibr" rid="ref9">9</xref>
        ]);
// Logistic Map function with iterates
X0 = X;
      </p>
      <p>X = r * X0 * (1.0 - X0);
}
}
// Function for blinkLED
// turn on/off LEDs
void blinkLED(const int pin) {
digitalWrite(pin, HIGH); // turn LED on
delay (wait); // wait 500 milliseconds
digitalWrite(pin, LOW); // turn LED off</p>
    </sec>
    <sec id="sec-3">
      <title>Experimental realization</title>
      <p>20. Chua, L.: Memristor, Hodgkin–Huxley, and edge of chaos. Nanotechnology 24(38):
383001 (2013)
21. Vaidyanathan, S., Sambas, A., Kacar, S., &amp; Çavuşoğlu, Ü.: A new three-dimensional
chaotic system with a cloud-shaped curve of equilibrium points, its circuit implementation and
sound encryption. International Journal of Modelling, Identification and Control, 30(3):
184-196 (2018)
22. Vaidyanathan S, Sambas A, Kacar S and Cavusoglu U.: A new finance chaotic system, its
electronic circuit realization, passivity based synchronization and an application to voice
encryption. Nonlinear Engineering, 8(1): 193-205 (2019)
23. Vaidyanathan, S., Azar, A. T., Rajagopal, K., Sambas, A., Kacar, S., &amp; Çavusoglu, Ü.: A
new hyperchaotic temperature fluctuations model, its circuit simulation, FPGA
implementation and an application to image encryption. IJSPM, 13(3): 281-296 (2018)
24. Rusyn, V.: Modeling and Research Information Properties of Rucklidge Chaotic System
Using LabView. In: 10th Chaotic Modeling and Simulation International Conference,
Barcelona, 30 May – 2 June 2017, pp. 739-744, (2015)
25. Rusyn V., Kushnir M., Galameiko O.: Hyperchaotic Control by Thresholding Method. In:
11th Modern Problems of Radio Engineering, Telecommunications and Computer Science
International Conference, TCSET 2012 - Proceedings, Lviv-Slavske, 21-24 February 2012,
art. No. 6192785, p. 67 (2012)
26. Di Marco, M., Innocenti, G., Forti, M., Tesi, A.: Control Design for Targeting Dynamics
of Memristor Murali-Lakshmanan-Chua Circuit. In 18th European Control Conference
(ECC), pp. 4332-4337 (2019).
27. Vaidyanathan, S., Feki, M., Sambas, A., Lien C. H.: A new biological snap oscillator: its
modelling, analysis, simulations and circuit design. International Journal of Simulation and
Process Modelling, 13(5): 419-432 (2018)
28. Vaidyanathan, S., Azar, A. T., Sambas, A., Singh, S., Alain, K. S. T., Serrano, F. E.: A
novel hyperchaotic system with adaptive control, synchronization, and circuit simulation.</p>
      <p>In: Advances in System Dynamics and Control, pp. 382-419, IGI Global (2018)
29. Vaidyanathan, S., Dolvis, L. G., Jacques, K., Lien, C. H., Sambas, A.: A new
fivedimensional four-wing hyperchaotic system with hidden attractor, its electronic circuit
realisation and synchronisation via integral sliding mode control. International Journal of
Modelling, Identification and Control, 32(1): 30-45 (2019)
30. Vaidyanathan, S., Sambas, A., Zhang, S.: A new 4-D dynamical system exhibiting chaos
with a line of rest points, its synchronizationand circuit model. Archives of Control
Sciences, 29(3): 485-506 (2019)
31. Rusyn, V., Skiadas, Ch.: Threshold Method for Control of Chaotic Oscillations. Springer</p>
      <p>Proceedings in Complexity. Springer, pp. 217-229 (2020)
32. Chua, L.: A zoo of strange attractors from the canonical Chua’s circuits. In: Proceedings of
the IEEE 35th Midwest Symposium on Circuits and Systems, Cat. No. 92CH3099-9, Vol.
2, pp. 916-926 (1992)
33. Rusyn, V., Mohamed, M.A., Purwandari, D., Mamat, M., Titaley, J., Pinontoan, B.:
Chaotic and Controlling Regimes of a New Modified Chua’s Generator. Journal of Advanced
Research in Dynamical and Control Systems, 12(2), 556-561 (2020)
34. Rusyn, V., Sadli, M., Mamat, M., Mujiarto, Sanjaya Mada, W.S.: Computer Modelling of
a New Simple Chaotic Generator. Journal of Physics: Conference Series, 1477, 022010
(2020)
35. May, Robert M.: Simple mathematical models with very complicated dynamics. Nature.
261(5560): 459-467 (1976)</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <surname>Ramazanov</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tishkov</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          :
          <article-title>Non-linear Forecasting of the State of a Socio-eco-oriented Innovative Economy in the Context of Systemic Crises</article-title>
          .
          <source>CEUR Workshop Proceedings</source>
          <volume>2422</volume>
          ,
          <fpage>181</fpage>
          -
          <lpage>193</lpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Pribylova</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Bifurcation routes to chaos in an extended Van der Pol's equation applied to economic models</article-title>
          .
          <source>Electronic Journal of Differential Equations</source>
          <volume>53</volume>
          :
          <fpage>1</fpage>
          -
          <lpage>21</lpage>
          (
          <year>2009</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Rusyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Savko</surname>
            ,
            <given-names>O.</given-names>
          </string-name>
          :
          <article-title>Modeling of Chaotic Behavior in the Economic Model</article-title>
          .
          <source>In 8th Chaotic Modeling and Simulation International Conference</source>
          , Paris,
          <fpage>26</fpage>
          -
          <lpage>29</lpage>
          May
          <year>2015</year>
          , pp.
          <fpage>705</fpage>
          -
          <lpage>712</lpage>
          , (
          <year>2015</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Hajnova</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pribylova</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Two-parameter bifurcations in LPA model</article-title>
          .
          <source>Journal of Mathematical Biology</source>
          .
          <volume>75</volume>
          (
          <issue>5</issue>
          ):
          <fpage>1235</fpage>
          -
          <lpage>1251</lpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Skiadas</surname>
            ,
            <given-names>C.H.</given-names>
          </string-name>
          <article-title>Exact solutions of stochastic differential equations: Gompertz, generalized logistic and revised exponential</article-title>
          .
          <source>Methodology and Computing in Applied Probability</source>
          <volume>12</volume>
          (
          <issue>2</issue>
          ):
          <fpage>261</fpage>
          -
          <lpage>270</lpage>
          (
          <year>2010</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Skiadas</surname>
            ,
            <given-names>C.H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Skiadas</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          <article-title>Chaotic Modelling and Simulation: Analysis of Chaotic Models, Attractors and Forms</article-title>
          . In: Taylor &amp; Francis Group, pp.
          <fpage>1</fpage>
          -
          <lpage>345</lpage>
          , LLC (
          <year>2008</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Lingala</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Namachchivaya</surname>
            ,
            <given-names>N.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pavlyukevich</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wedig</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          :
          <article-title>Random perturbations of periodically driven nonlinear oscillators</article-title>
          .
          <source>Procedia IUTAM 19</source>
          ,
          <fpage>91</fpage>
          -
          <lpage>100</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Lingala</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Namachchivaya</surname>
            ,
            <given-names>N.S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Pavlyukevich</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          :
          <article-title>Random perturbations of a periodically driven nonlinear oscillator: escape from a resonance zone</article-title>
          .
          <source>Nonlinearity</source>
          <volume>30</volume>
          (
          <issue>4</issue>
          ),
          <fpage>1376</fpage>
          -
          <lpage>1404</lpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Si</surname>
            ,
            <given-names>Y.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fečkan</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>Controllability of linear and nonlinear systems governed by Stieltjes differential equations</article-title>
          .
          <source>Applied Mathematics and Computation</source>
          ,
          <volume>376</volume>
          ,
          <issue>125139</issue>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Battelli</surname>
            ,
            <given-names>F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fečkan</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          :
          <article-title>On the Poincaré-Adronov-Melnikov method for the existence of grazing impact periodic solutions of differential equations</article-title>
          .
          <source>Journal of Differential Equations</source>
          ,
          <volume>268</volume>
          (
          <issue>7</issue>
          ),
          <fpage>3725</fpage>
          -
          <lpage>3748</lpage>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Fečkan</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sathiyaraj</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>J.R.</given-names>
          </string-name>
          :
          <article-title>Synchronization of butterfly fractional order chaotic system</article-title>
          .
          <source>Mathematics</source>
          ,
          <volume>8</volume>
          (
          <issue>3</issue>
          ),
          <volume>446</volume>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Sher</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shah</surname>
            ,
            <given-names>K.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fečkan</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khan</surname>
            ,
            <given-names>R.A.</given-names>
          </string-name>
          :
          <article-title>Qualitative analysis of multi-terms fractional order delay differential equations via the topological degree theory</article-title>
          .
          <source>Mathematics</source>
          ,
          <volume>8</volume>
          (
          <issue>2</issue>
          ),
          <volume>218</volume>
          (
          <year>2020</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Rusyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Samila</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Skiadas</surname>
          </string-name>
          , Ch.:
          <article-title>Computer modeling and practical realization of chaotic circuit with a light-emitting diode</article-title>
          .
          <source>In: Fourteenth International Conference on Correlation Optics, Chernivtsi</source>
          ,
          <fpage>16</fpage>
          -19
          <source>September</source>
          <year>2019</year>
          , pp.
          <source>113690D</source>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          14.
          <string-name>
            <surname>Milicka</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Cížek</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Faigl</surname>
          </string-name>
          , J.:
          <article-title>On Chaotic Oscillator-based Central Pattern Generator for Motion Control of Hexapod Walking Robot</article-title>
          .
          <source>CEUR Workshop Proceedings</source>
          <volume>1649</volume>
          ,
          <fpage>131</fpage>
          -
          <lpage>137</lpage>
          (
          <year>2016</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          15.
          <string-name>
            <surname>Chua</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Memristor - the missing circuit element</article-title>
          .
          <source>IEEE Trans. Circuit Theory</source>
          .
          <volume>18</volume>
          (
          <issue>5</issue>
          ):
          <fpage>507</fpage>
          -
          <lpage>519</lpage>
          (
          <year>1971</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          16.
          <string-name>
            <surname>Itoh</surname>
            ,
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chua</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Dynamics of Hamiltonian systems and memristor circuits</article-title>
          .
          <source>International Journal of Bifurcation and Chaos</source>
          ,
          <volume>27</volume>
          (
          <issue>2</issue>
          ):
          <volume>1730005</volume>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          17.
          <string-name>
            <surname>Wang</surname>
            ,
            <given-names>Z.F.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Shi</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wu</surname>
            ,
            <given-names>H.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Helian</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chua</surname>
            ,
            <given-names>O.L.</given-names>
          </string-name>
          :
          <article-title>Fractional memristor</article-title>
          .
          <source>Applied Physics Letter</source>
          <volume>111</volume>
          ,
          <issue>243502</issue>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          18.
          <string-name>
            <surname>Rusyn</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Khrapko</surname>
            ,
            <given-names>S.</given-names>
          </string-name>
          : Memristor: modeling and research of information properties. Springer Proceedings in Complexity. Springer, pp.
          <fpage>229</fpage>
          -
          <lpage>238</lpage>
          (
          <year>2019</year>
          )
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          19.
          <string-name>
            <surname>Yu</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Zheng</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iu</surname>
            ,
            <given-names>H. H. C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Fernando</surname>
            ,
            <given-names>T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Chua</surname>
            ,
            <given-names>L. O.:</given-names>
          </string-name>
          <article-title>A new circuit for emulating memristors using inductive coupling</article-title>
          .
          <source>IEEE Access 5</source>
          ,
          <fpage>1284</fpage>
          -
          <lpage>1295</lpage>
          (
          <year>2017</year>
          )
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>