Solving MATLAB Exponent Problem: Tips & Fixes

  • Context: MATLAB 
  • Thread starter Thread starter swartzism
  • Start date Start date
  • Tags Tags
    Exponent Matlab
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 19K views
swartzism
Messages
103
Reaction score
0
I am trying to do a very simple problem on MATLAB, but I do not know much about MATLAB so this is challenging. Here is the code:

Code:
y=0:50:300;
D=0.210;          % D is the mean sediment diameter
w=14*D^(1.1);     % w is the particle fall speed
A=0.067*w^(0.44); % A is the sediment parameter
h=A*y^(2/3);      % h is the shoreline depth under water
plot (y,h);

What I would like to happen is produce a graph of h=1.005*y^(2/3) with coordinates of h from 0 to 5 in increments of 0.5 and coordinates of y from 0 to 300 in increments of 50. The error I get is:

? Error using ==> mpower
Inputs must be a scalar and a square matrix.

Error in ==> beachprof at 5
h=A*y^(2/3); % h is the shoreline depth under water

What is going on here and how can I fix it?
 
Physics news on Phys.org
Your problem is in this line:

Code:
h=A*y^(2/3);

What you want is:

Code:
h=A*y.^(2/3);

To understand the difference, read the docs:

Code:
doc mpower
doc power