photo

FRANCISCO JAVIER


Last seen: mehr als 4 Jahre vor Aktiv seit 2013

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

11 Fragen
3 Antworten

Cody

0 Probleme
24 Lösungen

RANG
63.203
of 300.759

REPUTATION
0

BEITRÄGE
11 Fragen
3 Antworten

ANTWORTZUSTIMMUNG
27.27%

ERHALTENE STIMMEN
0

RANG
 of 21.081

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
19.099
of 170.900

BEITRÄGE
0 Probleme
24 Lösungen

PUNKTESTAND
290

ANZAHL DER ABZEICHEN
2

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Thankful Level 2
  • Thankful Level 1
  • First Answer
  • Speed Demon
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


save changes in variable pass in timer function
I want to change the value of a variable ( Precio) that i pass to a function in a timer. In the following call that variable don...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


running two guide in real time
I have two guides. In the firs guide i have a timer that read datas that charge in a second guide. How can run the second guide ...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


trigger when the clock change the hour
I want to put condition for loading data when the clock changes time, for example, when the time changes from 16:00 to 17:00. A...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


switch when the clock is on point
I want to put a condition when the clock changue the hour, i do that is bellow, but i want to know is there is other way to do t...

mehr als 4 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


How can reduce code?
I want to reduce the following code, where ind_cond is sub-set that satisfy cetain conditions. Someone can help me, please? ...

mehr als 4 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Delete all rows in a Table in a guide
When i delete all rows in a table in a guide, the header of the colws also dissapear, but i want maint it in the guide? How can...

fast 5 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


how can i get the intersection of two step curves?
how can obtain the intersection of two step curves

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


Replace secondary diagonal elements of a square array
Replace all the secondary diagonal elements of the square array A with the number n Example: A=[1 2 3; 4 5 6; 7 8 ...

etwa 10 Jahre vor

Gelöst


Matrix of almost all zeros, except for main diagonal
Write a program to input an integer n and build a n-by-n matrix with the numbers 1,2,...,n on the main diagonal and zeros elsewh...

etwa 10 Jahre vor

Gelöst


Polynomial Evaluation
Create a routine that takes a list of coefficients of a polynomial in order of increasing powers of x; together with a value of ...

etwa 10 Jahre vor

Gelöst


Compute Fibonacci Number
Compute the _n_-th Fibonacci Number f(0) = 0, f(1) = 1, f(2) = 1, f(3) = 2, ... f(42) = 267914296

etwa 12 Jahre vor

Gelöst


Remove the middle element from a vector
Remove the middle element of a vector? *Example:* [1,2,3] should return 2 [1,2,3,4] should return 2 [] should return...

etwa 12 Jahre vor

Gelöst


Palindrome
Check if a given string is a palindrome or not. For example, a = 'amoreroma' is a palindrome. But b = 'xyz' is not. Return...

etwa 12 Jahre vor

Gelöst


Power of n ?
Determine if _x_ (positive integer) is a power of _n_, return true or false accordingly.

etwa 12 Jahre vor

Gelöst


GJam 2013 Veterans: Ocean View (Small)
This Challenge is derived from <http://code.google.com/codejam/contest/2334486/dashboard#s=p2 GJam 2013 Veterans Ocean View>. Th...

etwa 12 Jahre vor

Gelöst


Kaggle: Reverse Game of Life - Periods of Oscillators
<http://www.kaggle.com/c/conway-s-reverse-game-of-life Kaggle's Conway's Reverse Game of Life> contest inspires this Period of L...

etwa 12 Jahre vor

Gelöst


Self-Description
This is a simplified version of the <http://xkcd.com/688/ *xkcd comic* by the same name>. Simply return the angle (in degrees...

etwa 12 Jahre vor

Gelöst


Simple Caesar Cypher - shift encrypt a message given an index number
A Caesar cypher is a simple shift encryption method. Your goal is to create a function that allows a user to input a string and ...

etwa 12 Jahre vor

Gelöst


Finding neighbors of [-1:1] in a matrix....
Hello All! Well I found this one fun to figure out, all you have to do is make a matrix of 1's or 0's (true or false) that sh...

etwa 12 Jahre vor

Gelöst


German tank problem
The <http://en.wikipedia.org/wiki/German_tank_problem German tank problem> is a well-known statistical problem that attempts to ...

etwa 12 Jahre vor

Gelöst


Add a row of zeros on top of a matrix
Given a matrix, insert a row of zeros as the top row.

etwa 12 Jahre vor

Gelöst


Check if equal
Return true if all the elements of an nD array are equal, false otherwise.

etwa 12 Jahre vor

Gelöst


Count decimal digits of a number
* Given an integer number you have to return the number of its digits. * For example 248 has 3 digits and 1589 has 4 digits ...

etwa 12 Jahre vor

Beantwortet
simple "While Loop" questions
function [vslSave]=prueba(x) vsl=x; vslSave=[]; while vsl<=10 if vsl >=0.001 && vsl<=0.01 increment ...

etwa 12 Jahre vor | 0

Gelöst


Fibonacci-Sum of Squares
Given the Fibonacci sequence defined by the following recursive relation, * F_n = F_(n-1) + F_(n-2) * where F_0 = 0 and F_1 ...

etwa 12 Jahre vor

Gelöst


Signed Magnitude
For a given input vector, return the value that is furthest from zero. For example, if x = [1 2 -12] return -12.

etwa 12 Jahre vor

Frage


How count pulse when go up in simulink?
How count pulse when go up in simulink, to obtaint the speed of the motor throught a encoder that emits 50 pulses for revolution...

etwa 12 Jahre vor | 1 Antwort | 0

1

Antwort

Gelöst


That's some divisor you've got there...
Given a positive integer x, calculate the sum of all of the divisors of the number. Please include the number itself in your fi...

etwa 12 Jahre vor

Gelöst


GJam 2014 China Rd B: Sudoku Checker
This Challenge is derived from <http://code.google.com/codejam/contest/2929486/dashboard#s=p0 GJam 2014 China Sudoku>. Large Cas...

etwa 12 Jahre vor

Beantwortet
Name for this practice: c = x.^2
If you put a vector as x, the operator "." made the operation for each value of the vector.

etwa 12 Jahre vor | 0

Mehr laden