Community Profile

photo

Kashfia Mahin


Last seen: casi 2 años hace Con actividad desde 2018

Estadísticas

All
  • Thankful Level 3
  • Solver

Ver insignias

Content Feed

Ver por

Pregunta


making video with Network
I made a video where a particular node color is changing in one second. I tried to capture the change of color in a video. It ...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Changing the color of one particular node into different colors
function pt = plot_topology_1(filename) newfilename = [filename, '.network']; fileID = fopen(newfilename); ...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to use animated line
I want to use the animation in the piping network. this is a sample of a code: s = [1 2 3]; t = [2 3 4]; G = graph(s,t); h ...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


how to choose different colors for nodes
t = [1 1 1 1]; h = [2 3 4 5]; g = graph(t,h); p = plot(g); g.Edges.value = [10; 20; 20; 100]; g.Nodes.value = [0.3; 0.564; ...

más de 4 años hace | 1 respuesta | 1

1

respuesta

Pregunta


Index in position 2 exceeds array bounds (must not exceed 3).
%% l2/l1=1 N=1; %revolution per minute theta=28 %dynamic angle of glass beads w=2*pi*N/60; % angular velocity D=.5; %drum r...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Pregunta


for loop, conditional operator
for k=1:length(kinetic); if (delta(j)<=kinetic(k)) && (j==k) filling_degree_regionI(j,k)=1/(2*pi).*(pi*(abra)/180-((rh/R).*c...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Resuelto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

más de 4 años hace

Resuelto


Return area of square
Side of square=input=a Area=output=b

más de 4 años hace

Resuelto


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

más de 4 años hace

Resuelto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

más de 4 años hace

Resuelto


Add two numbers
Given a and b, return the sum a+b in c.

más de 4 años hace

Pregunta


"For" loop running partially
<</matlabcentral/answers/uploaded_files/139544/Capture.PNG>> this is the question of which part 2 is to be solved. My code is...

más de 5 años hace | 0 respuestas | 1

0

respuestas

Pregunta


How to select one number from a loop. I want to calculate the time t when m5=99.9. when I run the program it doesn't show anything. I don't know how to print t from the time loop when m5=99.99
dt = 0.01; % Step size tend = 50; % End time t = 0:dt:tend; % Time vector %Loop for m5 calculation...

más de 5 años hace | 1 respuesta | 0

1

respuesta

Pregunta


prime number.there isn't any error. my ans isn't showed up
% finding prime number counter=0; for j= 1:10; for i=1:1:j if mod (j,i)==0 counter=counter...

más de 5 años hace | 1 respuesta | 0

1

respuesta