![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/13198895_1532464996166_DEF.jpg)
Wiley Mosley
Followers: 0 Following: 0
Estadística
1 Pregunta
6 Respuestas
0 Problemas
61 Soluciones
CLASIFICACIÓN
10.714
of 297.016
REPUTACIÓN
4
CONTRIBUCIONES
1 Pregunta
6 Respuestas
ACEPTACIÓN DE RESPUESTAS
100.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 20.419
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
8.268
of 157.725
CONTRIBUCIONES
0 Problemas
61 Soluciones
PUNTUACIÓN
720
NÚMERO DE INSIGNIAS
3
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
How do I set a seed to generate different random initial numbers and storing them
rng(1,'twister'); % init generator for random repeatable with seed 1 s = rng; % save generator settings as s for kk = 1: Iter...
más de 4 años hace | 0
Resuelto
Find the stride of the longest skip sequence
We define a _skip sequence_ as a regularly-spaced list of integers such as might be generated by MATLAB's <http://www.mathworks....
más de 5 años hace
Resuelto
Project Euler: Problem 6, Natural numbers, squares and sums.
The sum of the squares of the first ten natural numbers is, 1^2 + 2^2 + ... + 10^2 = 385 The square of the sum of the first ...
más de 5 años hace
Loop in solve system of nonlinear equations
By calling the index of R in the for loop you should be able to save the XYA in an array so that you have the solutions for all ...
más de 5 años hace | 0
disp gives wrong format
I was not able to recreate the issue that you described. One thing to note is depending on your settings it could be outputing a...
más de 5 años hace | 0
from python to matlab
https://www.mathworks.com/help/matlab/matlab-engine-for-python.html I believe you would want to utilize the matlab engine. If y...
más de 5 años hace | 0
| aceptada
from python to matlab
I think you might want to check this out: https://www.mathworks.com/help/matlab/matlab_external/pass-data-to-matlab-from-python...
más de 5 años hace | 0
Resuelto
Project Euler: Problem 2, Sum of even Fibonacci
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 te...
más de 5 años hace
Resuelto
Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...
más de 5 años hace
Resuelto
Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...
más de 5 años hace
Resuelto
Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...
más de 5 años hace
Resuelto
Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...
más de 5 años hace
Resuelto
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
más de 5 años hace
Resuelto
Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...
más de 5 años hace
Matlab Function in Simulink not allowing fortran scientific notation?
This was successfully addresed in a bug fix and update to 2019a.
más de 5 años hace | 0
| aceptada
Resuelto
Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....
alrededor de 6 años hace
Resuelto
Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...
alrededor de 6 años hace
Resuelto
Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.
alrededor de 6 años hace
Resuelto
Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...
alrededor de 6 años hace
Resuelto
06 - Matrix Equations 3
Define the matrices _aMat_, _bMat_, and _cMat_: <<http://samle.dk/STTBDP/Assignment1_3a.png>> ( _aMat_ = 9x9 matrix full o...
alrededor de 6 años hace
Resuelto
Determine Whether an array is empty
Input a matrix x, output y is TRUE if x is empty, otherwise FALSE.
alrededor de 6 años hace
Resuelto
Count photos
Given n people, everyone must have pictures taken with everyone, each photo includes only two persons, please count the total nu...
alrededor de 6 años hace
Resuelto
Implement simple rotation cypher
If given a letter from the set: [abc...xyz] and a shift, implement a shift cypher. Example: 'abc' with a shi...
alrededor de 6 años hace
Resuelto
Matlab Basics - y as a function of x
Write a function to calculate y as a function of x, such that y = 6x^2 + 5x - 2
alrededor de 6 años hace
Resuelto
Find the area of a triangle
Given a triangle with a base b and height h, return the triangle area.
alrededor de 6 años hace
Resuelto
Deleting an element in a matrix
For vector Grades=[98 56 78 34 100 88 87], delete the number 78 to get the following matrix Grades=[98 56 34 100 88 87] **re...
alrededor de 6 años hace
Resuelto
Geometric series
Find the sum, given the first term t1, the common ratio r, and number of terms n. Examples If input t1=1, r=1, n=7 the...
alrededor de 6 años hace
Resuelto
Square a Number
Given an input x, return y, which is equal to the square of x.
alrededor de 6 años hace