Community Profile

photo

Lalit Dhurve


Last seen: 2 years ago Active since 2020

Statistics

All
  • Promoter
  • Introduction to MATLAB Master
  • Community Group Solver
  • Knowledgeable Level 1
  • First Answer
  • Solver

View badges

Content Feed

View by

Answered
How to write sum
Simple !! function Y=Summation(N) Y=0; for n=1:1:N Y=Y+((n+2)/sqrt(n))+n^3; end end Done !!!

4 years ago | 1

| accepted

Answered
How do I delete rows and columns from a matrix
A= [1 2 3; 4 5 6; 7 8 9]; A1=A; A1(2,:)=[]; A2=A; A2(:,2)=[]; A1 , A2

4 years ago | 0