Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~259 People Reached
Favorite Forums
Favorite Tags
Member Avatar for XLL

Hi all, can anyone help me with writting the code that does: [CODE] n=5 for i in range(0,n,1): answer=a*i #a is an array,say([2,3,4]) return answer [/CODE] basically I want compute a*i and return answers when i=0,1,2,3,4 ,and the answer should be a 3*n matrix, first row is when i=0, second …

Member Avatar for leegeorg07
0
74
Member Avatar for XLL

Hi all,I got a issue that how can I run several functions at same time? say [CODE] a=1 def function1(a) a+1 return a def function2(b) b+2 return b def plotGraph(a,b) return graph [/code] how can I just run plotGraph function here?..I am totally newb..hope anyone can help..thanks

Member Avatar for pythopian
0
110
Member Avatar for XLL

Hi all, I am a newb, got a simple question, anyone can give any idea about it will be great,thanks in advance. a=2 b=3 def functionA(a,b): c=a+b return c def functionB(c) answer=c+1 return c but this code doesnt work....what I want is just assign functionA as one of the argument …

Member Avatar for jlm699
0
75