Emma Sellers
Followers: 0 Following: 0
Statistics
RANK
29 074
of 295 467
REPUTATION
1
CONTRIBUTIONS
15 Questions
1 Answer
ANSWER ACCEPTANCE
40.0%
VOTES RECEIVED
1
RANK
of 20 234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153 912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Asking a question with specific format
I need to ask a question that is formatted like this: *As a dialog box: Enter the resistance between node __ and node ___ ...
nästan 5 år ago | 1 answer | 0
1
answerQuestion
Asking multiple questions to user
Hi, Can someone tell me how to ask the user multiple questions while also have one question that changes variables? I want the q...
ungefär 5 år ago | 1 answer | 0
1
answerQuestion
Adding Symbolic equations using while loops
I am attempting to create a matlab version of the KCL equation. I can't figure out a way to loop through all the possible equati...
ungefär 5 år ago | 1 answer | 0
1
answerQuestion
Populating a matrix with user input
answer=inputdlg({'nodes'}); nodes=str2double(answer(1,1)); nodematrix=Inf(nodes); A=1; B=0; answer=[]; while A < nodes ...
ungefär 5 år ago | 1 answer | 0
1
answerQuestion
Asking User a Question with Variables
Why does this not work? How do I ask the user questions involving changing variables?
ungefär 5 år ago | 3 answers | 0
3
answersQuestion
Array for Symbolic Expressions
Can I create an array to store symbolic expressions?? I want to do something like: Equation1 = vpa(Equation); disp(...
ungefär 5 år ago | 0 answers | 0
0
answersQuestion
Specific if statement question
I want to write an if statment that will determine if n2 is the first symbolic variable in this statement.. Is that possible?? ...
ungefär 5 år ago | 1 answer | 0
1
answerQuestion
Program that Analyses a circuit
So, I have a complicated question... I am attempting to write a program that analizes a circuit based off of user imput. Right...
ungefär 5 år ago | 0 answers | 0
0
answersQuestion
Equations with Variables & User input
Hi! I am attempting to write a program that analyzes a circuit that is decribed with user input.. My attempt is to get the use...
ungefär 5 år ago | 1 answer | 0
1
answerQuestion
Storing User Input in a Matrix
I am attempting to write code that takes user input in with the dialog boxes. But i need the user input to then be stored in a m...
ungefär 5 år ago | 1 answer | 0
1
answer2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. Write a function called smallest_multiple that returns a uint64, the smallest positive number that is evenly divisible by all of the numbers fr
So, yes it needs to work with larger numbers.. But heres the thing: when I manually run the code with 45 in it (the number i...
nästan 6 år ago | 0
Question
2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder. Write a function called smallest_multiple that returns a uint64, the smallest positive number that is evenly divisible by all of the numbers fr
I keep getting an error everytime I run my code that says: [out] = smallest_multiple(6) Error using gcd (line 23) Inputs ...
nästan 6 år ago | 3 answers | 0
3
answersQuestion
Write a function called digit_counter that takes the name of a text file as input and returns the number of digits (i.e., any of the characters, 0-to-9) that the file contains. If there is a problem opening the file, the function returns -1. WARNING:
Hi, I was wondering why this does not work? Do i need to do nested for loops with i and j to traverse through the file ? funct...
nästan 6 år ago | 1 answer | 0
1
answerQuestion
Write a function called halfsum that takes as input an at most two-dimensional array A and computes the sum of the elements of A that are in the lower right triangular part of A, that is, elements in the counter-diagonal (going from the bottom left c
function [sume] = halfsum(A) [row,col] = size(A); for c = 1 : 3 for i = row : -1 :1 for j = col : -1 : 1 ...
nästan 6 år ago | 3 answers | 1
3
answersQuestion
2. Write a function called year2016 that returns a row-vector of struct-s whose elements correspond to the days of a month in 2016 as specified by the input argument. If the input is not an integer between 1 and 12, the function returns the empty arr
Please explain to me why this code will not work. function[d] = year2016(m) if m<1 || m>12 || ~isscalar(m)|| m~=fix(m) ...
nästan 6 år ago | 1 answer | 0
1
answerQuestion
Each number on telephone keypads, except 0 and 1, corresponds to a set of uppercase letters as shown in this list: 2 ABC, 3 DEF, 4 GHI, 5 JKL, 6 MNO, 7 PQRS, 8 TUV, 9 WXYZ Hence, a phone-number specification can include uppercase letters and digits.
I can not quite figure out why my code does not perform. I keep getting syntax errors that dont make sense to me. Such as "parse...
nästan 6 år ago | 3 answers | 0