photo

Zachary Holmes


Actif depuis 2015

Followers: 0   Following: 0

Statistiques

MATLAB Answers

21 Questions
0 Réponses

RANG
215 811
of 300 956

RÉPUTATION
0

CONTRIBUTIONS
21 Questions
0 Réponses

ACCEPTATION DE VOS RÉPONSES
9.52%

VOTES REÇUS
0

RANG
 of 21 124

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG

of 172 015

CONTRIBUTIONS
0 Problèmes
0 Solutions

SCORE
0

NOMBRE DE BADGES
0

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Question


Converting arrayfun to loop
So in this code, function cipher_text = vigenere_cipher(origionalText,key) Array = Operator; key = lower(key)...

plus de 9 ans il y a | 1 réponse | 0

1

réponse

Question


Is there a function for inverting the 'reshape' command?
For my rail fence cipher, i obtain the correct output. But am wondering if there is a simple command to decipher the output? ...

plus de 9 ans il y a | 1 réponse | 0

0

réponse

Question


Rail Fence Encryption function
Just wondering how i would do a rail fence encryption function. Unsure on the process. for an understanding of the code plea...

plus de 9 ans il y a | 1 réponse | 0

1

réponse

Question


write a Matlab script that asks a group of up to 40 members to enter their height (in cm) and their weight (in kg).
It should work like this: Prompt the user to enter the two values. • Read in the input from the user, if any of the input valu...

environ 10 ans il y a | 1 réponse | 0

1

réponse

Question


Geometric series that halves but prints first 10 elements i.e. 1/2,1/4....,1/1028
My solution is: for i=1:10 GS(i)=1/(2)^2; fprintf('GS is: ',GS(i)) end however it only prints 1/4. Ho...

environ 10 ans il y a | 2 réponses | 0

2

réponses

Question


Hey People :) Im trying to using a for loop to create and print an array of a Geometric Serise that stores the first 10 terms of the sequence that halves each time i.e. {1/2, 1/4, 1/8, 1/16, ... 1/1024 }
My method obviously is to use a for loop but my problem is printing the array. Could somebody please write a script to help m...

environ 10 ans il y a | 2 réponses | 0

2

réponses

Question


Hey people :) How would i write a Matlab script that asks a group of up to 40 members to enter their height (in cm) and their weight (in kg)?
i have attempted the question but i haven't made any progress. My approach was to use a for loop which looped through entrie...

environ 10 ans il y a | 2 réponses | 0

2

réponses

Question


Briefly explain two main differences between writing MATLAB code as a user-defined function compared with just writing a script file?
So im not sure about this one. Is it to do with the different input streams of a script to a function? Please help thanks!!...

environ 10 ans il y a | 1 réponse | 0

1

réponse

Question


So i Know how logical indexing is converted to loops, however this one gets me. Could some one please help!!
So the Question is: Write MATLAB code using an iterative (or programming) approach to repli- cate the calculation done in the s...

environ 10 ans il y a | 1 réponse | 0

1

réponse

Question


Am i correct with my conversion of a Logical indexing to a for loop?
Logical indexing is: T ( T > 10) = 10; My Loop is: for (T>10) T = 10? Also how could i do a while loop? ...

environ 10 ans il y a | 2 réponses | 0

2

réponses

Question


Write MATLAB code to create and print a vector GS that stores the first 10 terms of the geometric sequence that halves each time: {1/2, 1/4, 1/8, 1/16, ... 1/1024 }
this is what i have done but it is wrong Initial=input('Enter initial value: ') for i =1:10 y(i)=(Initial)*(0.5) ...

environ 10 ans il y a | 3 réponses | 0

3

réponses

Question


The initialisation of this matrix which the colon operator
if my matrix is: B = [ 0 4 8 12 16 20 24 28 32 36 40] would the correct initialisation be: B=0:4:20??

environ 10 ans il y a | 1 réponse | 0

1

réponse

Question


I'm confused to how this conversion works for a for to while loop
If the for loop is for i=2:3:20 disp(i); end Would the while loop be: i=2 while (i<20)...

environ 10 ans il y a | 1 réponse | 0

1

réponse

Question


For loop to while loop
Re-write this code so that it uses while-loop instead of the for-loofor i=2:3:20 disp(i); end

environ 10 ans il y a | 1 réponse | 0

0

réponse

Question


User defined compared to script file
Briefly explain two main differences between writing MATLAB code as a user-defined function compared with just writing a script ...

environ 10 ans il y a | 1 réponse | 0

0

réponse

Question


Matlab Vs C programming
What happens if you run a Matlab program that indexes values beyond the end of an array? What happens if you index beyond the en...

environ 10 ans il y a | 1 réponse | 0

0

réponse

Question


Initialising an array in matlab
use the colon operator (:) to initialise array B to the value shown below. B = [ 0 4 8 12 16 20 24 28 32 36 40]

environ 10 ans il y a | 1 réponse | 0

0

réponse

Question


Logical indexing to Loop
Given a vector T, write a loop in Matlab that is equivalent to the following command? T ( T > 10) = 10;

environ 10 ans il y a | 1 réponse | 0

0

réponse

Question


Hey people, how would you solve this?
int temp, values[6] = {3, 4, 5, 1, 2, 8}; temp = *(values + 2);

environ 10 ans il y a | 1 réponse | 0

0

réponse

Question


Not Matlab, But C, Hope you can still help!!
What is the value of temp after executing the code below? int temp, values[6] = {3, 4, 5, 1, 2, 8}; temp = *(values + 2)

environ 10 ans il y a | 1 réponse | 0

0

réponse

Question


Hey guys! I need to find the low points
(a) You are to write a Matlab function called findLowPoints. The function takes in one parameter: a vector of real numbers (sup...

environ 10 ans il y a | 2 réponses | 0

2

réponses