photo

Rusty


Indian Institute of Technology, Kanpur

2015년부터 활동

Followers: 0   Following: 0

메시지

통계학

All
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

질문


I am trying to get an infinite sum using symsum, but when I trying to convert to double I am getting error
%if true %%%% clear all E=0.01; % t= [0.025 0.05 0.1 0.2 0.3 0.4 1]'; t=[ 0.05]; y=0:0.1:1; y=y'; syms n p=(1/(4*pi*p...

대략 8년 전 | 답변 수: 0 | 0

0

답변

질문


I am trying to solve a system of 3 PDEs using pdepe in MATLAB. But I am getting an error
Here is the code % function pdex51 m = 0; x = 0:0.005:1; t = 0:0.01:1; options=odeset('Reltol',1e-10,'Abstol',1...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


Fluctuating and negative value in pdepe
I am trying to solve a coupled pde in MATLAB. The code is : function pdex5 m = 0; x = linspace(0,1,100); t = lins...

8년 초과 전 | 답변 수: 0 | 0

0

답변

질문


I am solving a pde using pdepe in matlab. But I am getting warnings and some peculiar results.
<</matlabcentral/answers/uploaded_files/44504/IMG_20160202_091532.jpg>> Here is my differential equation. A and B are constan...

8년 초과 전 | 답변 수: 0 | 0

0

답변

질문


MATLAB Image processing filtering
One sample image is http://goo.gl/0IOkBZy .Download the file and name it as <</matlabcentral/answers/uploadd_files/43433...

8년 초과 전 | 답변 수: 3 | 0

3

답변

답변 있음
Write a function so that, when given a natural number N, the function returns the value max  n ∈ N : 12 + 22 + · · · + n 2 ≤ N
function [ p ] = rusty( N) a(1)=12; i=1; while sum(a(:))<=N a(i+1)=a(i)+10; i=i+1; end if sum...

8년 초과 전 | 0

질문


I have a symbolic function, I want to know the points of discontinuity.
For example the function is : syms t k=t*heaviside(5-t)+5*heaviside(t-5) ;

8년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
How to find object is vertically or horizontally symmetry ?
let the matrix be A if A== fliplr(A) %this means that it has vertical symmetry disp(' it is vertically symmetrical ')...

9년 초과 전 | 0

| 수락됨