필터 지우기
필터 지우기

is this form of code is correct?

조회 수: 1 (최근 30일)
Aniket
Aniket 2013년 3월 7일
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,

채택된 답변

Jan
Jan 2013년 3월 7일
편집: Jan 2013년 3월 7일
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
Aniket
Aniket 2013년 3월 7일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Simulink Environment Customization에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by