i keep getting an error in my code about my array. pls help . code and error below thank you
Mostrar comentarios más antiguos

2 comentarios
Walter Roberson
el 31 de Oct. de 2019
We have no information about the size of x, xold,vold, aold, xtip1, xorig1, xtip2, xorig2, U, T, Us, Up, E, or R1 .
alexis cordova
el 31 de Oct. de 2019
Respuestas (1)
CAM
el 31 de Oct. de 2019
0 votos
When you are concatenating horizontally, the number of rows must be consistent. According to your comment, all variables are 1x1, but R1 is 2x2. Thus R1 is causing the error. Either change R1 to a single row, or put the variables into a cell array, which will allow for the different variable sizes.
Why are you taking the tranpose of scalers (xold', vold', ...) ?
3 comentarios
alexis cordova
el 31 de Oct. de 2019
alexis cordova
el 31 de Oct. de 2019
Walter Roberson
el 31 de Oct. de 2019
R1(:).' converts the 2 x 2 into 1 x 4
Categorías
Más información sobre Polynomials en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!