Statistics
4 Questions
0 Answers
RANK
171,699
of 295,527
REPUTATION
0
CONTRIBUTIONS
4 Questions
0 Answers
ANSWER ACCEPTANCE
50.0%
VOTES RECEIVED
0
RANK
of 20,242
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,057
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How to evaluate the code inside the MuPad notebook?? to find the Euler Phi value of given input
x=5; x=sym(x); nb=mupad('phi.mn'); setVar(nb,x); z=getVar(nb,'z'); content of file phi.mn is [z := numlib::phi(x); ...
11 years ago | 0 answers | 0
0
answersQuestion
How to reduce the time to calculate the inverse of a matrix
I have a 64 x 64 matrix,and it is taking a lot of time like 15-20 minutes to compute the inverse,Let my matrix be A,I'm using th...
11 years ago | 1 answer | 0
1
answerQuestion
Calling a function f inside f,how can we do this
function H=f(m) H1=zeros(m/2); H=[f(m/2) H1;H1 H1]; end
11 years ago | 2 answers | 0
2
answersQuestion
Using if statement inside a function,I didn't understand why the error is coming,why I am unable to use the values of x & y inside the if loop
function O = help(~,~) i=input('Value of i:'); j=input('Value of j:'); O = y(i,j); function g=y(x,...
11 years ago | 1 answer | 0