Unbalanced brackets using interp, any ideas?
Show older comments
Code runs like this and gives me a, Error: File: bassi_bed2b.m Line: 41 Column: 41 Unbalanced or unexpected parenthesis or bracket.
x=1:45; xx=1:.1:45;
yy=interp(x,bed);[((jj);(xx);('cubic'))];
plot(0.033*xx,0.1+(120+yy)/200,'w','linewidth',2)
ylabel('Range (m)','fontsize',fz), xlabel('Distance (m)','fontsize',fz)
hold off
Answers (1)
Geoff Hayes
on 15 Dec 2017
Mark - please review this line
yy=interp(x,bed);[((jj);(xx);('cubic'))];
What is the intent here? Do you really meab
yy=interp(x,bed,[(jj);(xx)],'cubic');
I'm assuming that is what you are intending given the function signature to interp1 (not the interp function that you are using).
1 Comment
MARK THACKWRAY
on 15 Dec 2017
Categories
Find more on Polygonal Shapes in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!