Statistiques
0 Problèmes
243 Solutions
RANG
N/A
of 302 014
RÉPUTATION
N/A
CONTRIBUTIONS
0 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
0
RANG
of 21 496
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
A résolu
Matlab Basics II - 3 Dimensional Arrays
Assume x is a 3D array with n pages, representing students in a class, for each student (page in the array, the 3rd dimension), ...
plus de 5 ans il y a
A résolu
Calculate roots of polynomial given as vector array.
Calculate roots of polynomial given as vector array. Example x=[1 2 0 5 0 3] result=[-2.7267 ; ...
plus de 5 ans il y a
A résolu
Funny problems
Generate the following vector: if n=1 then q=1; elseif n=2 then q=[2 2 1]; elseif n=3 then q=[3 3 3 2 2 1]; ... end
plus de 5 ans il y a
A résolu
N-plicate me
Modified version of duplicate and triplicate me. Repeat elements of input vector with given input n Ex: input = [1 2 3 4 5...
plus de 5 ans il y a
A résolu
Back to Basics - New Data Type in R2016b - convert a char to a string
Convert an char array into a string.
plus de 5 ans il y a
A résolu
determine if
determine if the elements of a matrix is a nan and return true
plus de 5 ans il y a
A résolu
Make an identity matrix whose diagonal elements are 1:n
For a given input n, make an n by n identity matrix that contains the elements 1:n along its diagonal. For example, if input=5: ...
plus de 5 ans il y a
A résolu
Replace 0 indices in array with 1's
Take a incoming vector, and replace 0's with ones
plus de 5 ans il y a
A résolu
Matlab Basics II - Operations and Matrix Dimensions
Write a function that takes two inputs, a & b, and outputs the sum and product of the two matrices. The matrices have OPPOSITE d...
plus de 5 ans il y a
A résolu
Extract a specific part of matrix!
In the given matrix, extract element that have odd rows and column number. For example A=[1 4 2 3 5] B=extractodd(A);...
plus de 5 ans il y a
A résolu
Matrix element wise multiplication
Take two incoming vectors, and multiply them element wise
plus de 5 ans il y a
A résolu
Vector Element Multiplication
Take two incoming vectors, and output the element wise multiplication of the vectors.
plus de 5 ans il y a
A résolu
Replace 0 to NaN!
In given matrix A=[1 nan nan; 2 2 nan; nan nan 1]; replace NaN to 0. Use matrix A as a input.
plus de 5 ans il y a
A résolu
Shift elements of vector left
Shift elements of vector to the left. For ex. : Input_vec = [1 2 3 4 5] Output_vec = [2 3 4 5 1]
plus de 5 ans il y a
A résolu
Initialize a Natural Number matrix.
Given length of matrix initialize a matrix consisting of natural numbers from 1 to n: n = 10; x = [ 1 2 3 4 5 6 7 8 9 10]; ...
plus de 5 ans il y a
A résolu
The great 82-year-old
Let's answer the question below; 'I am *x* years old and I have never written programs. If I study from now, will I be able ...
plus de 5 ans il y a
A résolu
vectors counting by 5
Create a vector with numbers from x_min to x_max in increments of 5.
plus de 5 ans il y a
A résolu
Pointwise multiplication of vectors.
Pointwise multiplication of vectors x and y. Example x= [1 3 5 7 9 11 13 15 17 19] y=[ 1 4...
plus de 5 ans il y a
A résolu
Get 1-4-3-4-4
Get the value of the indices in the title and assign it to an array
plus de 5 ans il y a
A résolu
Simple Vector Addition
Take two incoming vectors and output the sum of the two vectors
plus de 5 ans il y a
A résolu
Calculate the number of elements in a matrix.
Calculate the number of elements in a matrix.
plus de 5 ans il y a
A résolu
Find the minimal value in N*N Matrix
Suppose that we have N by N matrix, we try to find the minimal value in that matrix. examples: Input A=[1 2 3 5 6;52 58 56 45...
plus de 5 ans il y a
A résolu
Calculate the square of a number (Super Easy)
The goal is to calculate the square (y) of a number (x). Good way to start MatLab for beginners.
plus de 5 ans il y a
A résolu
Sum the rows
Sum the rows of the given matrix. Example x = [ 1 2 3 4 ] y = [ 3 7 ]
plus de 5 ans il y a
