Community Profile

photo

Giuseppe


2014 年からアクティブ

統計

  • Thankful Level 4

バッジを表示

Content Feed

表示方法

質問


For to While Loop
Hi I have been told you can convert any for loop to a while loop. If so I don't see how you could convert the following to a whi...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


The function isreal not working?
function [calc_valid, EM] = input_check(N,t,S,EV) inputs = [N,t,S,EV]; %The inputs are placed in a vector. calc_vali...

10年弱 前 | 0 件の回答 | 0

0

回答

質問


Checking variables are valid for a set of conditions.
The aim of this sub function is to determine if the inputs of a parent function are valid. The goal is that EM is a string displ...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


check if two variables are not equal to zero.
I have the vector e.g A=10 B=4 C=0 D=4 V = [A,B,C,D] How would I check if more than two values equal zer...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


Check if a number of varibles in a function satifies a condition.
Say for example I had the function function [d,e] = examplefunction(a,b,c,d,e) end I would like to check if the...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


Function does not calculate desired variable.
Hi I have the following function; function [EV,N,t,S] = EVjc300293(EV,N,t,S) % If a variable is set to zero calculate it...

10年弱 前 | 2 件の回答 | 0

2

回答

質問


randi size inputs not scalar issue?
I have an issue when I want a variable length I decided to give two inputs max_length and min_length. I then chose the length in...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


Chose a random integer between an upper and lower limit.
I ask the user to input two limits a upper and lower limit. I then want to generate a random integer between these two values. ...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


Using randi instead of floor and rand.
This is my password generator. % Password Generator % 1. Input Parameters uppercase = 'A':'Z'; lowercase = 'a':'...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


Help with graph legend.
This is my attempt at displaying this in the legend of the graph. legend('y=',num2str(c(1)),'x^2+',num2str(c(2)),'x+',num2s...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


multiple inputs for a function
this is my function function ispal=palindrome(forward_string) reverse_string = forward_string(end:-1:1); ispa...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


Compare letters in a string.
say i have the string hello for eaxample. I want to compare if the first element in this string equalls the last, if the second ...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


How to select a one random letter from a matrix of letters.
I have the array. move = [R ,P, S] How would I select a random letter from this array. cmove = ? Would it look...

10年弱 前 | 1 件の回答 | 0

1

回答

質問


Check if a palindrome.
I have the script: %1. Clear the memory and command window. clear clc %2. Input a string. string = ...

10年弱 前 | 2 件の回答 | 0

2

回答

質問


For loop not working for my equation.
This is my for loop. for gra=m && yint=c x = (gra-c)./ (m-2) y = m.*x+c end Although I cant g...

約10年 前 | 1 件の回答 | 0

1

回答

質問


Finding if a line intersects another.
I have the simultaneous solution of line 1 and line 2 for instance. This is a point where hey intersect. Say line one was betwee...

約10年 前 | 1 件の回答 | 0

1

回答

質問


Solving linear equations simultaneoulsy.
I have a vector of m and a vector of c values for a set of linear expressions. I have a value for m and c for a single expressio...

約10年 前 | 1 件の回答 | 0

1

回答

質問


Finding varible in equation from vectors.
I have x = [1 2 3] y = [1 2 1] m = [1 -1 0] For the equation y = mx +c (linear expression) I want to find c (y int...

約10年 前 | 1 件の回答 | 0

1

回答

質問


Determine if a polygon is complex.
I want to determine if a polygon is complex not using inbuilt functions. This is my rough idea. for edge = 1:n ...

約10年 前 | 1 件の回答 | 0

1

回答

質問


Circshift not working for values of zero.
I have; x = [0 0 3 3] I want this to become x = [0 3 3 0] When I circshift x_2 = circshift(x,2) it equ...

約10年 前 | 2 件の回答 | 0

2

回答

質問


Creating two vectors from one.
Hi I have a vector; x = [2 4;3 -8; 1 2; 2 4;] I need to produce two vectors like the ones to the left and right below. To...

約10年 前 | 2 件の回答 | 0

2

回答

質問


Counting how many times a loop loops.
This is my code I want the user to enter a number they beleive the loop will run for until the running sum of integers is 21. ...

約10年 前 | 1 件の回答 | 0

1

回答

質問


Finding the area of a polygon.
Hi I have a set of x and y coordinates which form the corners of a polygon. I need to calculate area manually using the shoelace...

約10年 前 | 2 件の回答 | 0

2

回答

質問


The circshift function not working.
I have this code using the idea from this post <http://www.mathworks.com/matlabcentral/answers/122826-vector-manipulation-by-cha...

約10年 前 | 1 件の回答 | 0

1

回答

質問


Vector manipulation by changing order or numbers in a vector.
I have the vector a = [4 5 7 8 9 10] I would like to make a new vector with the second element first and the first eleme...

約10年 前 | 1 件の回答 | 0

1

回答

質問


How do I check if any elements are not a number in a matrix.
I want to check that the matrix I have contains any non numbers in it. I guess I would use the any() function? I just don't know...

約10年 前 | 1 件の回答 | 0

1

回答

質問


Checking if a matrix is right dimensions.
I have this code for a user to enter coordinates. This creates then the matrix y and x. n=10; % number of lines a= input...

約10年 前 | 2 件の回答 | 0

2

回答

質問


Get a user to input corordinates to form a matrix.
Hi I have the matrix; points = [2 5; 6 9; 7 8; 9 10; 6 10] I want to make it that the user inputs the points and a subse...

約10年 前 | 2 件の回答 | 0

2

回答

質問


Calculating the distance between points using vectorization.
Hi I have the matrix; points = [2 5; 6 9; 7 8; 9 10; 6 10] These points relate to a set of x and y coordinates. I want t...

約10年 前 | 3 件の回答 | 0

3

回答

質問


How would I open multiple figures from one script.
Hi I have 3 scripts which all produce a figure. They are all graphs. How would i put them all on one script and have all plots d...

約10年 前 | 2 件の回答 | 14

2

回答

さらに読み込む