已回答
How do I transform this handle into a string?
Okay, I solved this one. Thanks to all for responding.

8 years 前 | 0

已回答
What is wrong with this?
I modified code to: function SQUARE = logipack( V) % Find the size of the input matrix [m,n] =size(V); ...

8 years 前 | 0

提问


What is wrong with this?
I need to be able to determine what my code is producing. It yields: <</matlabcentral/answers/uploaded_files/65644/Captu...

8 years 前 | 2 个回答 | 0

2

个回答

提问


How do I transform this handle into a string?
My code is: function x = find_zero( f,x1,x2 ) %FIND_ZERO Summary of this function goes here % Detailed explanation ...

8 years 前 | 5 个回答 | 0

5

个回答

提问


Told to ask a new question = Why won't this work?
My code follows, it doesn't work, but it does store the column indices of 1s. function SQUARE = logipack( V) % Find ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Problem with straightforward problem - Can you help?
My code is as follows. It doesn't return the right answer. For 1556 it returns "XI". Its supposed to return "XVI" for the cen...

8 years 前 | 1 个回答 | 0

1

个回答

提问


Need a means of passing a handle to a function shown to me.
Hi, I need to pass a "handle" to a function. I then need to use the handle. Here is the question that describes the code. ...

8 years 前 | 1 个回答 | 0

1

个回答

已回答
I don't understand this question, does someone else?
Thanks. I have to pack the matrix in an array. Here is my code. It isn't working. Any idea what is wrong? functio...

8 years 前 | 0

提问


I don't understand this question, does someone else?
The question is: <</matlabcentral/answers/uploaded_files/65423/Capture.JPG>> Can someone please explain it via an illustra...

8 years 前 | 4 个回答 | 0

4

个回答

提问


Need to find Palindromic number with multipliers that are both n digits long.
Okay, I seek palindromic number with multipliers that are both "n" digits long. Once I find a palindromic candidate, I must det...

8 years 前 | 0 个回答 | 0

0

个回答

提问


Debugger won't step into software at first line with this code.
My code is: function n = palin_product( dig,lim ) if isnumeric(dig)== false n = 0; return; ...

8 years 前 | 0 个回答 | 0

0

个回答

提问


Create largest N digit number
I need to create an N digit number given only that it is N digits long. For N = 2, this number would be two nines, or 99, for...

8 years 前 | 1 个回答 | 0

1

个回答

提问


How to request additional data from the user in a function
Hi, Thanks for reading this. I have to call a function, then it appears I need to request more data from within the functi...

8 years 前 | 4 个回答 | 0

4

个回答

提问


Matlab and Pendulum function - Need Help - Thank you.
function T= pendulum( L, a0 ) %PENDULUM Summary of this function goes here % Detailed explanation goes here %initia...

8 years 前 | 4 个回答 | 0

4

个回答

已回答
I'm getting an error in the line with product (count)= A*B/C
Received an answer elsewhere.

8 years 前 | 0

| 已接受

已回答
Wrong answer to straightforward problem:
Thanks a lot, that was the problem.

8 years 前 | 0

提问


Wrong answer to straightforward problem:
*** Write a function called triangle_wave that computes the sum <</matlabcentral/answers/uploaded_files/64878/Capture.JPG>>...

8 years 前 | 2 个回答 | 0

2

个回答

提问


I'm getting an error in the line with product (count)= A*B/C
function [ out ] = triangle_wave( n ) %TRIANGLE_WAVE Summary of this function goes here % Detailed explanation goes he...

8 years 前 | 2 个回答 | 0

2

个回答

已回答
Eulers Number Code and Questions
Can't use factorial.

8 years 前 | 0

已回答
Eulers Number Code and Questions
Okay, solved it.

8 years 前 | 0

| 已接受

提问


Eulers Number Code and Questions
My current code follows, but is in error when I enter "1" as the input. DO you see the problem?: function [est k ] = appr...

8 years 前 | 3 个回答 | 0

3

个回答

已回答
Don't understand indexing statement from compiler
BUt in the code as written now there is no multiplication or division,and it still won't work.

8 years 前 | 0

提问


Don't understand indexing statement from compiler
MY code is: function mbd = spherical_mirror_aberr(fn,D ) %SPHERICAL_MIRROR_ABERR Summary of this function goes here %...

8 years 前 | 2 个回答 | 0

2

个回答

提问


Problem with function. Can you help? Thanks.
Question is withdrawn. Problem solved.

8 years 前 | 1 个回答 | 0

1

个回答

提问


Need a better solution than "try-catch" statement to find an intentional error in input arguments
I know there are a lot of handy matlab functions that do what I must program, but I'm not allowed to use them. I need to be ab...

8 years 前 | 0 个回答 | 0

0

个回答

提问


How do I set counter = to a value when it is a persistent variable so if i reinitialize it each time through a loop it loses it purpose?
function result = exp_average(a,varargin) persistent avg counter; if counter ==0 counter =0; end if nargin ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


I need to be able to use a vector as an input to a function either as a variable or in form [ 1 2 ...N]
I need to be able to use a vector as an input to a function, but it can be either in vector form or as a variable name: here c0 ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


I need to be able to input a vector, either as a vector, or as a variable name, to a function.
I need to be able to use a vector as an input to a function, but it can be either in vector form or as a variable name: here c0...

8 years 前 | 1 个回答 | 0

1

个回答

提问


For some strange reason MATLAB spits out two answers to the following code , pay2 =, and p =. It is ony supposed to produce 1 answer
The following code is spitting out two answers, and it's only supposed to produce one answer, payment. Instead it spits out a...

8 years 前 | 2 个回答 | 0

2

个回答

提问


How to discover where code ends.
function days = day_diff( M1,D1,M2, D2 ) %DAY_DIFF Summary of this function goes here % Detailed explanation goes he...

8 years 前 | 1 个回答 | 0

1

个回答

加载更多