Azzera filtri
Azzera filtri

Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Trying to mask can anyone help?

1 visualizzazione (ultimi 30 giorni)
Alex Doan
Alex Doan il 12 Feb 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
%%
choose_in = input('Please enter a psoition between 0 and 360 ');
if (choose_in < 0)
choose_in = abs(choose_in);
Warning('You entered a negative value, taking the ablsolute value');
end
if (choose_in > 360)
error('The value is greater than 360 inches, program terminated')
end
a=(0:360); %number 0-choose_in
mask1= a(b);
b= a>=120;
mask2= a>240 & a<360;
Deflection = (1/(3.19*10^9)) * ((((800*choose_in^3) - 13.68 * ((10^6)*choose_in) - (2.5*choose_in^4) + (2.5*((choose_in-120)^4)*((mask1)) + (600*((choose_in-240)^3*(mask2)))))))
%Deflection = Deflection_ahdoan2(choose_in);
  3 Commenti
Alex Doan
Alex Doan il 13 Feb 2020
Logical indexing is what's its called
KSSV
KSSV il 13 Feb 2020
What you are trying to do in the code? What probelm you facing in the code?
mask1= a(b);
In the above line, what is b? It is not defined and used in the code.

Risposte (0)

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by