photo

Sampath reddy


Attivo dal 2012

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

18 Domande
1 Risposta

Cody

0 Problemi
18 Soluzioni

RANK
12.898
of 302.041

REPUTAZIONE
4

CONTRIBUTI
18 Domande
1 Risposta

ACCETTAZIONE DELLE RISPOSTE
16.67%

VOTI RICEVUTI
4

RANK
 of 21.511

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
29.718
of 178.376

CONTRIBUTI
0 Problemi
18 Soluzioni

PUNTEGGIO
180

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Thankful Level 1
  • Solver

Visualizza badge

Feeds

Visto da

Risolto


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

circa 14 anni fa

Domanda


Update slider value while in a for loop.
I am running a program in GUI.It contains a for loop. One of the parameters in the program is controlled by slider. While inside...

oltre 14 anni fa | 2 risposte | 1

2

risposte

Domanda


How to plot data inside a for loop?
I would like to know how to plot a graph in a GUI like a scope or moving graph as the data point is simulated inside a for loop....

oltre 14 anni fa | 1 risposta | 0

1

risposta

Domanda


Highlight a point on graph.
I have a graph in which i want to highlight a point by 'o'.I want to highlight the point to see if the chosen values are in the ...

oltre 14 anni fa | 1 risposta | 0

1

risposta

Domanda


Draw graphs from menu GUI
I want to plot any four graphs from the menu of 7 options in a GUI on the same window. How to do that?? Thanks!!

oltre 14 anni fa | 2 risposte | 0

2

risposte

Domanda


Parfor on GPU
I want to run two functions in parallel on a GPU. For this i want to use pafor(eg: for ii=1 fun1 and ii=2 fun2). Can variable...

oltre 14 anni fa | 2 risposte | 1

2

risposte

Risolto


Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...

oltre 14 anni fa

Risolto


Given an unsigned integer x, find the largest y by rearranging the bits in x
Given an unsigned integer x, find the largest y by rearranging the bits in x. Example: Input x = 10 Output y is 12 ...

oltre 14 anni fa

Risolto


Factorize THIS, buddy
List the prime factors for the input number, in decreasing order. List each factor only once, even if the factorization includes...

oltre 14 anni fa

Risolto


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

oltre 14 anni fa

Risolto


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

oltre 14 anni fa

Risolto


Distance walked 1D
Suppose you go from position 7 to 10 to 6 to 4. Then you have walked 9 units of distance, since 7 to 10 is 3 units, 10 to 6 is 4...

oltre 14 anni fa

Risolto


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

oltre 14 anni fa

Risolto


Is my wife right?
Regardless of input, output the string 'yes'.

oltre 14 anni fa

Risolto


Replace May with April
For instance, if the input is input_str = 'The flowers may bloom in April'; then the output is output_str = 'The flo...

oltre 14 anni fa

Risolto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

oltre 14 anni fa

Risolto


How to find the position of an element in a vector without using the find function
Write a function posX=findPosition(x,y) where x is a vector and y is the number that you are searching for. Examples: fin...

oltre 14 anni fa

Risolto


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

oltre 14 anni fa

Risolto


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

oltre 14 anni fa

Risolto


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

oltre 14 anni fa

Risolto


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

oltre 14 anni fa

Risolto


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

oltre 14 anni fa

Risolto


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

oltre 14 anni fa

Domanda


why are there noise signals with increasing time?
The following is a program for simulation of a laser beam with dither modulation. clear all clc freq=1000000; ...

oltre 14 anni fa | 0 risposte | 0

0

risposte

Domanda


Bandpass filter
I want to run a signal through bandpass filter, but the data is sent one by one. t=0:0.0000001:1; a=sin(2*pi*250...

oltre 14 anni fa | 1 risposta | 0

1

risposta

Domanda


does parfor support global variables?
I want to use global variables in the functions run in parallel using parfor. Is it possible?

oltre 14 anni fa | 1 risposta | 1

1

risposta

Domanda


Parallel computing problem
I have 3 programs to run in parallel, each on one core on my quad core processor. For this i'm using jobs and tasks method. Aft...

oltre 14 anni fa | 1 risposta | 0

1

risposta

Risposto
Problem accessing a variable in workspace
How to declare a variable global in base workspace?

oltre 14 anni fa | 0

Domanda


Problem accessing a variable in workspace
I have generated a variable in a program and want to use the same variable from workspace in other program. I dont want to use i...

oltre 14 anni fa | 2 risposte | 0

2

risposte

Domanda


Can we use parfor inside a for loop?
Can a parfor loop be used in side a for loop. I want to run a series of iterations with parfor inside the for loop. How to do t...

oltre 14 anni fa | 2 risposte | 1

2

risposte

Carica altro