![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/12883846_1526938246826_DEF.jpg)
Elijah Smith
Attivo dal 2018
Followers: 0 Following: 0
Statistica
All
RANK
7.598
of 297.016
REPUTAZIONE
6
CONTRIBUTI
0 Domande
6 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
3
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Risposto
how to find out wether the array is Hill or not?
This is just the first thing that I thought of: function res = Is_hill(array) %define variables res = -1; stopVa...
how to find out wether the array is Hill or not?
This is just the first thing that I thought of: function res = Is_hill(array) %define variables res = -1; stopVa...
circa 6 anni fa | 0
Risposto
How to use the loops in this situation?
So, there are a few things that I noticed right off the bat. I have not seen the syntax "while if ..." and I don't believe tha...
How to use the loops in this situation?
So, there are a few things that I noticed right off the bat. I have not seen the syntax "while if ..." and I don't believe tha...
circa 6 anni fa | 1
Risposto
How to solve equations
I'm not sure if I understand what your asking. If you are saying that you have the values for pi, pj, and pk already then you ca...
How to solve equations
I'm not sure if I understand what your asking. If you are saying that you have the values for pi, pj, and pk already then you ca...
circa 6 anni fa | 1
Risposto
how to save the result of each iteration of 'for' loop in a text file without replacing the previous results in the text file????
you must open the file with "append" permissions not "write" permissions like so: fid = fopen(my1.txt, 'a'); %this will not era...
how to save the result of each iteration of 'for' loop in a text file without replacing the previous results in the text file????
you must open the file with "append" permissions not "write" permissions like so: fid = fopen(my1.txt, 'a'); %this will not era...
circa 6 anni fa | 0
Risposto
Why does this produce an error?
Here are the problems: 1) you can't use a value for a input (as the other people have said) 2) even if your inputs were vari...
Why does this produce an error?
Here are the problems: 1) you can't use a value for a input (as the other people have said) 2) even if your inputs were vari...
circa 6 anni fa | 0
Risposto
how can i make the centre elements of a matrix to become zeros
this is what I came up with: function A = cancel_middle(A, k) [n, m] = size(A); array2add = zeros(k); if n > k &...
how can i make the centre elements of a matrix to become zeros
this is what I came up with: function A = cancel_middle(A, k) [n, m] = size(A); array2add = zeros(k); if n > k &...
circa 6 anni fa | 1