Community Profile

photo

Tesfaye Girma


Indian Inistitute of Technology kanpur

Last seen: 8 meses hace Con actividad desde 2021

PhD Scholar , mechanical engineering

Professional Interests:
Mechanical Engineering

Estadísticas

All
  • Knowledgeable Level 2
  • Thankful Level 1
  • Project Euler I
  • CUP Challenge Master
  • 5-Star Galaxy Level 1
  • Personal Best Downloads Level 1
  • Community Group Solver
  • Introduction to MATLAB Master
  • First Answer
  • Promoter
  • Commenter
  • Creator

Ver insignias

Content Feed

Ver por

Respondida
Read excel file correctly
correct it manually in the excel itself

12 meses hace | 0

| aceptada

Respondida
plot many variables from table
you can use this format to get the list in a month and you can sort i a table def day_in_month(year,month): if month>12 or m...

12 meses hace | 0

| aceptada

Respondida
not able to solve the integration function
indeces should have to match in both side and be compatable as well

más de 2 años hace | 0

Respondida
Why ode45 is not working??
you can try this approach if it worked for you f = (t,y) [ 4.86*y(3) - 4.86*10^14*y(1)*y(2); 4.86*y(3) - 4.86*10^...

más de 2 años hace | 0

Respondida
HYSTERISIS LOOPS USING DATA
you can try this code x = rand(10,1); y = rand(10,1); quiver(x(1:end-1),y(1:end-1),diff(x),diff(y),0);

más de 2 años hace | 0

Respondida
simulation of Gas network coupled with AC grid
i think you can apply similar model to solve

casi 3 años hace | 0

Respondida
how to find two blob center point difference
i think you can use this code convert image to grayscale image gray_image = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) convert th...

casi 3 años hace | 0

Respondida
How to create code for toeplitz matrix
fipref('NumericTypeDisplay','short'); format short g a = fi([1 2 3],true,8,5) b = fi([1 4 8],true,16,10) toeplitz(a,b)

alrededor de 3 años hace | 0

| aceptada

Respondida
How can I specify less oschillatory behaviour for PID
figure(3),plot(yt) title('PID control result. V-Tiger is better than Ziegler-Nichols rule') xlabel('sample number k (0...

alrededor de 3 años hace | 0

Pregunta


Replace the diagonal with NaN in this 5x5 matrix
a=[1 0 0 0 0;0 1 0 0 0;0 0 1 0 0;0 0 0 1 0;0 0 0 0 1] function y_diagonal =replace_NaN(x) y=x; end

alrededor de 3 años hace | 2 respuestas | 0

2

respuestas

Respondida
Is it possible to read an MS Word document into Matlab and convert to binary code?
%yes offcourse you can %you can follow this path and read the file you want in matlab word = actxserver('Word.Application'); ...

alrededor de 3 años hace | 1

| aceptada

Respondida
Change [ ] cells in .mat file to NaN
strcmp(Some_file.xyz,'[ ]')

alrededor de 3 años hace | 0

Respondida
Data to pdf report
publish('myfile.m','pdf')

alrededor de 3 años hace | 0

Respondida
using for loop to create a vector
for weeks = "M" "T" "W" "Th" "F" "Sa" "Su"; days="30" "45" "30" "0" "90" "45" "30" ...

alrededor de 3 años hace | 0