I dont know how to solve the below question. I'm completely lost on where to even begin. I understand the fprintf, just the sin and cos always throw me off. Any direction would even be greatly appreciated
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
James Niemiec
el 4 de Jun. de 2018
For 0 ≤ x ≤ 1 with an increment of 0.1 in x, compute f( x )=sin*x/1+x. For this computation, set x=0:0.1:1 and then perform element-by-element multiplication (.*) operation. Please avoid plugging each x to the function. Using fprintf, print out x and f(x) in two columns with each variable having 8 decimal places.
2 comentarios
Adam
el 4 de Jun. de 2018
Editada: Adam
el 4 de Jun. de 2018
f( x )=sin*x/1+x
is a highly suspicious definition of a function. For a start sin has no argument. I assume it should be sin( x ). Also I assume the
1 + x
should be
( 1 + x )
otherwise you are just dividing by 1 (pointless) then adding x to the result.
Apart from that I don't really understand what your confusion is though. If you don't know what sin is then that is a very basic maths problem that you need to look up in a book or online. Assuming you do know what sin is then
doc sin
will take you to the Matlab help page on the function that implements sine.
Most of the rest of it is explicitly stated as to how to do it.
Respuesta aceptada
monika shivhare
el 4 de Jun. de 2018
x=0:0.1:1;
f=sin(x./(1+x));
for i=1:length(x)
fprintf('%0.8f %0.8f\n',x(i),f(i));
end
6 comentarios
Rik
el 4 de Jun. de 2018
A for-loop in Matlab executes the block of code until the matching end, with i taking on the values of the columns of the supplied array. You don't have to actually use the loop index for the for-loop to work.
In this case, i will take on the values 1 through 11.
There is a big difference between for and while.
Stephen23
el 4 de Jun. de 2018
Editada: Stephen23
el 5 de Jun. de 2018
"Many of the for statements ive dealt with in the past were used in C# or C++ coding"
Sure, but MATLAB is not C or C++. If you want to learn about MATLAB, then you will need to read the MATLAB documentation: for is described as "for loop to repeat specified number of times" (it does not say "to repeat forever"). The documentation then shows how to specify the values to loop over.
Más respuestas (0)
Ver también
Categorías
Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!