Info
This question is closed. Reopen it to edit or answer.
to save time the mistake is in this line how can i solve it
1 view (last 30 days)
Show older comments
omega=(pi/tmax)*(0:nt/2-1) (-nt/2:-1); the error is said:
Unbalanced or unexpected parenthesis or bracket.how can i solve it if i need this interval
0 Comments
Answers (1)
sixwwwwww
on 7 Dec 2013
Edited: sixwwwwww
on 7 Dec 2013
perhaps * or / is missing
omega=(pi/tmax)*(0:nt/2-1) .* or ./ (-nt/2:-1);
2 Comments
sixwwwwww
on 7 Dec 2013
./ mean you are dividing values (pi/tmax)*(0:nt/2-1) with the values (-nt/2:-1). So it has nothing to do with the interval. It just calculating values
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!