what is difference in cell and structure plz tell me with example
Mostra commenti meno recenti
what is difference in cell and structure plz tell me with example
Risposta accettata
Più risposte (2)
There is good documentation on this, did you read:
doc cell
doc struct
Here is a cell array:
C{1} = magic(3);
C{2} = 'A character array!';
C{3} = 3
Here is a structure:
S.color = 'red';
S.length = 5;
S.matrix = eye(4)
Now look at how you get information out of both of these:
C{2} % Displays the contents of cell 2 of cell array C
S.matrix % Shows contents of field 'matrix' of struct S.
1 Commento
manoj saini
il 17 Dic 2012
anas
il 27 Nov 2023
0 voti
The following equation describes the motion of a certain mass connected to a spring, with viscous friction on the surface
3j + 39j + 120y = f(t)
where f(t) is an applied force. Suppose that f(t) = 0 for t < 0 and f(t) = 10 t >= 0
a. Plot y(t) for y(0)= dot y(0) = 0 .
b. Plot y(t) for y(0) = 0 and iv(0) = 10 Discuss the effect of the nonzero initial velocity.
Use the ode 45 Solver for this problem.
Categorie
Scopri di più su Data Type Identification in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!