Community Profile

photo

Hrusheekesh


Last seen: 1 year ago Active since 2022

Statistics

  • Knowledgeable Level 1
  • First Answer

View badges

Content Feed

View by

Answered
matrix multiplication with different sizes
hi kriti can you try this x=repelem(a,k); b=b.*x;

2 years ago | 0

| accepted

Answered
Averaging elements for a cell within a cell array
where c is your cell. clc c={[1,2,3];[2,3,40];[34,21,35];[2,7,5];[33 67 89]}; p=[]; n=size(c{1}); m=size(c); for i=1:n(2) ...

2 years ago | 0

Answered
generate pair numbers randomly
hi ananya, it is my understanding that you want to create a array of pairs with random vaues. but is there any constraints like...

2 years ago | 1

Answered
I want to need (maxY(:,1)) for different value of k, how the for loop will help?
Hi sahil, what you can do is send the values of k in a array. k =[0:0.1E-3:3E-3]; r=[]; for i = 1:size(k) [T,Y]= ode45(...

2 years ago | 0

Answered
run matlab on cloud platform
Hi Ishitha, You can run MATLAB on cloud platforms, but you must check your license agreements for the support. For more inform...

2 years ago | 0

Answered
Find intersection of points in a graph
Hi chinmayraj, You can refer to this page to find the intersection of two curves. You can also subtract the two curves and get...

2 years ago | 0

Answered
how to make symbolic variable by loop as we want
Hi verma, I understand that you want to create multiple symbolic variables with one command. The following example will ill...

2 years ago | 0