The first arguments in the normal Denselayer are also unitsand are the number of neurons / nodes in this layer. However, the standard LSTM module is as follows:

(This is a revised version of " Understanding LSTM Networks ")
In Keras, when I create an LSTM object like this LSTM(units=N,...), do I actually create LSTMs Nfrom these units? Or is it the size of the layers of the "neural network" inside the LSTM block, i.e. Win the formulas? Or something else?
For context, I work based on this code example .
Here is the documentation: https://keras.io/layers/recurrent/
It says:
: , .
, Keras LSTM "layer". , N . , N LSTM LSTM, , , LSTM N , N h[t], , h[tN] h[t]?
, , - , , , x[tN] x[t], LSTM, units=N ?
, , return_sequences. " True N , " False h[t] . ?