Community Profile

photo

Kashfia Mahin


Last seen: fast 2 Jahre vor Aktiv seit 2018

Followers: 0   Following: 0

Statistiken

All
  • Thankful Level 3
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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 ...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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 ...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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; ...

mehr als 4 Jahre vor | 1 Antwort | 1

1

Antwort

Frage


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...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


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...

mehr als 4 Jahre vor

Gelöst


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

mehr als 4 Jahre vor

Gelöst


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.

mehr als 4 Jahre vor

Gelöst


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 ...

mehr als 4 Jahre vor

Gelöst


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

mehr als 4 Jahre vor

Frage


"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...

mehr als 5 Jahre vor | 0 Antworten | 1

0

Antworten

Frage


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...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort