In Simulink how would you change [4x1] signal to [1x1]
6 views (last 30 days)
Show older comments
Adam s
on 19 Jul 2021
Commented: Walter Roberson
on 19 Jul 2021
I would like to take a signal in simulink for example a =123 and b = 456 and have the output = 123456.
How would you do this?
0 Comments
Accepted Answer
Walter Roberson
on 19 Jul 2021
Arithmetic blocks? One that multiplies by 1000 and the other that adds ?
Or is the range of values not set in advance? Is the range variable? For example if one time a = 123 b = 456 then you want 123456 as output; if the next time a = 123 and b = 45 then would you want 12345 as output, or would you want 123045 as output?
What result do you want if one of the values is negative? If both of them are negative then do you need a negative result?
3 Comments
Walter Roberson
on 19 Jul 2021
2 (constant block) ->
| max (minmax block) --> [T1]
B ->
[T1] ->
| multiply (product block) -> log10 (math block) -> [T2]
(1+20*eps) (constant block) ->
[T2] -> ceiling (rounding function) -> 10^u (math) ->
| multiply (product block) -> [T3]
A ->
[T3] ->
| add (math) --> result
B ->
In the above, I give an operation name, and then in () I give the name of the block that implements it.
In the above, the [T1] are not operations, but are simply labels to make clearer how the blocks join together
So you take
A * 10^ceil(log10((1+20*eps)*max(B,2))) + B
The max() part is to handle 0 and 1 the same as 2 to 9.
The 1+20*eps part is a hack so that exact powers of 10 such as 1000 get the full number of digits, since ceil(log10(99)) is 2, same as ceil(log10(100)). The constant 20*eps is sufficient up to 1E32... but of course if you are above 1E15 then you have to start worrying about losing precision when you do the concatenation.
More Answers (1)
Sameer Pujari
on 19 Jul 2021
You can do this
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!