Precision and indices must be positive integers

3 visualizzazioni (ultimi 30 giorni)
Miraboreasu
Miraboreasu il 16 Dic 2022
Modificato: Miraboreasu il 16 Dic 2022
Hello, three questions for the following code
  1. If I don't use round() for timerise, timesta, timedecay, it will give a warn: Warning: Integer operands are required for colon operator when used as index. It is weird to use round, any better suggestions?
  2. My ouputpoint is integer from workspace, don't know why it has error: Array indices must be positive integers or logical values.(solved)
  3. The p value from workspace, looks wierd, some are accrated, some are not
% clc
clear
P0 = 1000.0;
timestep=2.0e-8;
t0 = [10.0e-6; 100.0e-6; 500.0e-6];
td = t0;
ts = 1.0e-7;
timeset=[t0(1), ts, td(1)];
time=sum(timeset);
t=0:timestep:time;
t=t(1:length(t));
timerise = t(1:round(t0(1)/timestep)+1);
timesta = t(round(t0(1)/timestep+2):(round(t0(1)/timestep+2)+round(ts/timestep-1)));
timedecay= t((round(t0(1)/timestep+2)+round(ts/timestep)):end);
ouputpoint = [1 round(t0(1)/timestep)+1, (round(t0(1)/timestep+2):(round(t0(1)/timestep+2)+ts/timestep-1)), (round(t0(1)/timestep+2)+ts/timestep), length(t)];
P=func(timerise,timesta,timedecay,t0(1),P0,ts,td(1),t(end));
P(ouputpoint);
function P=func(timer,timest,timed,t0,Ppeak,ts,td,t)
kr = Ppeak./t0;
pr = kr.*timer;
ps = Ppeak*ones(1,length(timest));
kd = (Ppeak-0)/(timest(end) - t);
b = -kd*t;
pd = kd*timed+b;
P=[pr ps pd];
end

Risposte (3)

Askic V
Askic V il 16 Dic 2022
Modificato: Askic V il 16 Dic 2022
The problem is in the line:
kd = (Ppeak-0)/(times(end) - t);
times is a built in Matlab function for element wise multiplication of arrays.
The keyword end can be used only with arrays to indicate last index of and the array
  3 Commenti
Askic V
Askic V il 16 Dic 2022
Modificato: Askic V il 16 Dic 2022
It is because your array ouputpoint contains the following:
ouputpoint = 0 501 502 503 504 505 506 507 1006
First, Matlab cannnot index array with index 0, in Matlab index starts with 1. Also last element is 1006, so are you sure your P array has 1006th element?
If you make this modification, you'll see it will work:
P(ouputpoint(2:end-1))
Miraboreasu
Miraboreasu il 16 Dic 2022
Thanks, question 2 is fixed, can you take a look at 1 and 3?

Accedi per commentare.


Torsten
Torsten il 16 Dic 2022
Spostato: Torsten il 16 Dic 2022
ouputpoint(1) = 0 (see above).
So you try to access P(0) which is not possible in MATLAB since array indices start at 1, not at 0.
And P(1006) does not exist since the array has only 507 elements.

John D'Errico
John D'Errico il 16 Dic 2022
Why did this line gather an error?
kd = (Ppeak-0)/(times(end) - t);
The end operator must be used within an array index expression.
Did you define an array called times? I don't see one, and neither does MATLAB. In that case, what does MATLAB do? It assumes you want to use the FUNCTION named times. No variable? It must be a function.
Yes, you have a variable named time. But should MATLAB know what you want to do? Computers tend to be rather literal things. They do as they are told to do. And would you really want your computer to start to re-write your code for you? Maybe you would, I don't know. But I'd not totally trust a computer program to get something complicated right.
As far as being an integer from your workspace, is this number an integer?
X = 1 + eps
X = 1.0000
It looks fairly integer-ish. And sometimes if something likes like a duck, people believe is a duck.
X == 1
ans = logical
0
But it is not.

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Prodotti


Release

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by