Answered convert vector of n or any size into a matrix
Here's one way to do this. Note that I changed your notation to use n (rather than x) for the number of columns as this seems m...
8 years ago | 0
| accepted
Answered Time alignment of two signal with same length
I think the fundamental problem you have with your approach is not that the signals are the same length it is that they contain ...
Answered Calculate vector norm in Simulink?
You can use the dot product block (with the same vector wired to both inputs) followed by a square root. Both are under the Math...
13 years ago | 9
| accepted
Answered How to write cell array into a csv file
You could do it as follows with fprintf
c = {'abc' 'def' 'ghk';[23],[24],[67];[87],[13],[999];[656],[6767],[546]};
fi...