-
6 Comments
Show
3 older comments
Mechatrobrnotronik
on 2 Mar 2013
function ans = column_removal(A,n)
A(:, n) = ''
end
Why doesn't this code work? :/
Florian M. Faessler
on 27 Oct 2013
@Mechatrobrnotronik: I tested your code.
function ans = test_fkt(A,n)
A(:,n) = ''
end
Works for me. Returning A with removed column n.
Nonetheless I am interested in what '' actually does. I couldn't find it in the command reference.
Kristin Foster
on 3 Dec 2017
fun
Suggested Problems
-
5979 Solvers
-
2763 Solvers
-
5777 Solvers
-
813 Solvers
-
Convert given decimal number to binary number.
2115 Solvers
More from this Author96
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!