photo

Magdy Saleh


Attivo dal 2018

Followers: 0   Following: 0

Statistica

All
MATLAB Answers

0 Domande
5 Risposte

Cody

0 Problemi
6 Soluzioni

RANK
3.958
of 300.779

REPUTAZIONE
14

CONTRIBUTI
0 Domande
5 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
1

RANK
 of 21.084

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
53.915
of 170.997

CONTRIBUTI
0 Problemi
6 Soluzioni

PUNTEGGIO
70

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Knowledgeable Level 2
  • First Answer
  • Solver

Visualizza badge

Feeds

Visto da

Risposto
How to create a matrix with the same number in every few rows?
Create a 250 by 250 matrix: A = zeros(250) And then to fill any 50 rows with a particular number: A(1:50,:) = 1...

oltre 7 anni fa | 0

Risposto
How to separate connected image objects
There are two approaches you can take here, either you write a script that changes the pixel values for the line given you know ...

oltre 7 anni fa | 0

Risposto
Storing while loop values in a vector?? Error
It might be easier here to use a cell array as such fid = fopen('example.txt'); sample={}; %empty matrix count=1; ...

oltre 7 anni fa | 0

| accettato

Risposto
how to make my code simpler ?
Try something like: for i=1:num_elems %assuming you know the number of elements and have set it before hand eval(['TB...

oltre 7 anni fa | 1

| accettato

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 7 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 7 anni fa

Risolto


Add two numbers
Given a and b, return the sum a+b in c.

oltre 7 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 7 anni fa

Risolto


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

oltre 7 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 7 anni fa