How to make the x and y vector the same length

16 次查看(过去 30 天)
subplot(7,3,[7 16]+2); hold on;
sess5.LRx=linspace(-135,135);
plot(sess5.LRx,sess5.time,'b');
This is the code I have, The sess5.time got more than 10,000 elements, how can I make it work?

采纳的回答

Cris LaPierre
Cris LaPierre 2020-11-22
编辑:Cris LaPierre 2020-11-22
Take a look at the documentation for linspace.
If you only input the start and stop values, linspace creates a vector with 100 values. You can include a third input to specify the number of values to create. You can use the length command to determine the maximum dimesion of a variable. Use this to automatically determine the number of values to create.
sess5.LRx=linspace(-135,135,length(sess5.time));

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by