Can you explain ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Could you please explain this line to me
a=min(b):0.001:max(c);
1 Commento
Rik
il 19 Gen 2023
I recovered the removed content from the Google cache (something which anyone can do). Editing away (part of) your question is very rude. Someone spent time reading your question, understanding your issue, figuring out the solution, and writing an answer. Now you repay that kindness by ensuring that the next person with a similar question can't benefit from this answer.
Risposta accettata
KSSV
il 30 Giu 2022
Thats is simple....
min(b)--> this takes minimum value from b
max(c)--> this picks maximum from c
a:b--> this will gnerate numbers between a and b with a difference of 1.
a:dx:b----> this will generate numbers between a and b with a difference given dx.
% EXample
a = 0 ;
b = 1;
dx = 0.1 ;
x = a:dx:b
length(x)
diff(x)
2 Commenti
Steven Lord
il 30 Giu 2022
I'm guessing from these questions that you're fairly new to MATLAB. Am I correct? If so I suggest you start with the free MATLAB Onramp tutorial to quickly learn the essentials of MATLAB. After completing that tutorial the code segments you've posted should make more sense.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Introduction to Installation and Licensing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!