Community Profile

photo

Khom Raj Thapa Magar


Last seen: oltre 3 anni fa Attivo dal 2020

What I think weird in life is that Human makes their life even more difficult in search of ease and comfort.

Statistiche

All
  • MATLAB Central Treasure Hunt Finisher
  • Solver
  • First Answer

Visualizza badge

Content Feed

Visto da

Risposto
How to display two non-consecutive column vectors
Indices can be non-consecutive numbers. Try extracting the first, third, and sixth elements of density. Indices can be non-cons...

oltre 3 anni fa | 4

Risposto
Given a Matrix A, create a row vector of 1s that has same number of elements as A has rows
% Given A = [1:5; 6:10; 11:15; 16:20]; row_vec = ones(1,size(A,1)) column_vec = ones(length(A),1) result = row_vec * A * co...

oltre 3 anni fa | 7

Risposto
Kenyan Eliud Kipchoge set a new world record for men of 2:01:39 on September 16, 2018. Assign his average speed in km/h to the variable marathon. The marathon distance is 42.195 kilometers? How to Calculate ?
distance_in_km = 100./1000; time_in_h = 9.58 / (60. * 60); hundred = distance_in_km / time_in_h; disp(hundred); Time_2nd_q...

quasi 4 anni fa | 0