contour plot not working after using the help example

조회 수: 1 (최근 30일)
Chinwendu Madubueze
Chinwendu Madubueze 2020년 5월 28일
편집: Chinwendu Madubueze 2020년 5월 28일
please help me. My contour is not working. I follow step by step example in Matlab HELP to plot my own work. it keep showing this message. The code is giving below. Thank you.
Index exceeds matrix dimensions.
Error in ==> contour>parseargs at 135
if ischar(args{end})
Error in ==> contour at 67
[pvpairs,args,msg] = parseargs(args); %#ok
clear all
close all
R0 = beta / gamma * (alpha * gamma + gamma * R * (1 - alpha)) + tau;
alpha = 0.4;
beta = 0.25;
gamma = 0.2;
omega = 0.2;
xi = 0.05;
R1 = linspace(0,1,100);
tau1 = linspace(0,1,10);
[tau R] = meshgrid(tau1,R1);
mesh(tau,R,R0) %interpolated
axis tight; hold on
plot(tau,R,R0,'.','MarkerSize',15) %nonuniform
  댓글 수: 8
John D'Errico
John D'Errico 2020년 5월 28일
You named the script "contour plot.m" with a space between the two words? Is that how I should read what you said? If so, you need to realize that is not a valid name for a script in MATLAB.
Chinwendu Madubueze
Chinwendu Madubueze 2020년 5월 28일
편집: Chinwendu Madubueze 2020년 5월 28일
Thank you very much. It is working now. I changed the script's name. Thank you. I am grateful. I look forward to responses to my second code.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by