Clear Filters
Clear Filters

is this form of code is correct?

1 view (last 30 days)
Aniket
Aniket on 7 Mar 2013
Hello,
i have written some code for my simulation as following
for i = 1:10
phi(i)= [phi num2str(i)](end)
end
but in matlab it is showing me error
Error: File: initialconditinsanotherform.m Line: 12 Column: 29
Unbalanced or unexpected parenthesis or bracket.
the error is showing for (end) bracket
what should i do?
i am trying to get end values from previous simulation to my next simulation as an initial values.
Thank You,

Accepted Answer

Jan
Jan on 7 Mar 2013
Edited: Jan on 7 Mar 2013
for k = 1:10
v = [phi num2str(k)];
phi(k) = v(end)
end
But this is a really strange operation: Why do you create the vector v when you need the last element only? And what might be the reason for num2str? The result of the function will be the string:
phi = '01234567890';
or perhaps the corresponding ASCII values.
  1 Comment
Aniket
Aniket on 7 Mar 2013
Hello Jan,
I am doing simulation in simulink and and i am declaring initial values in Matlab. The simulation are related to oscillators and each oscilator is having integrators because its ODE equations.
for example i have 3 oscillators, so i have to define initial values phi (1), phi(2), phi(3) each phi value is define for 1,2,3 oscillators respectively.
so i have create a vector in matlab like phi = [1 1 1]
this is for first time simulation ... after first time simulation there will be some different output values and i want to use these values as an initial values for my second time simulation.

Sign in to comment.

More Answers (0)

Categories

Find more on Simulink Environment Customization in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!